mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-09-02 06:31:53 +00:00
.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
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()
|