mirror of
https://github.com/Eugeny/tabby-web.git
synced 2026-08-16 22:36:02 +01: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()
|