1
0
mirror of https://github.com/Eugeny/tabby-web.git synced 2025-09-02 06:31:53 +00:00
Files
.github
app-dist
backend
public
tabby
app
__init__.py
asgi.py
middleware.py
settings.py
urls.py
wsgi.py
.dockerignore
.gitignore
Dockerfile
cloudbuild.yaml
gunicorn.conf.py
manage.py
poetry.lock
pyproject.toml
start.sh
frontend
.editorconfig
.flake8
.gitignore
LICENSE
README.md
docker-compose.yml
tabby-web/backend/tabby/wsgi.py
Eugene Pankov 83c5e11a61 wip
2021-07-25 20:45:15 +02:00

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()