This commit is contained in:
Eugene Pankov
2021-07-06 23:45:52 +02:00
parent 6bd5aff8b7
commit 3ff34b2618
36 changed files with 76 additions and 83 deletions

7
tabby/wsgi.py Normal file
View File

@@ -0,0 +1,7 @@
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tabby.settings')
application = get_wsgi_application()