mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-08 05:29:52 +00:00
8 lines
166 B
Python
8 lines
166 B
Python
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tabby.settings")
|
|
|
|
application = get_wsgi_application()
|