1
0
mirror of https://github.com/Eugeny/tabby-web.git synced 2025-07-31 14:36:58 +00:00
Files
build
src
static
tabby
app
__init__.py
asgi.py
settings.py
urls.py
wsgi.py
.flake8
.gitignore
.pug-lintrc.js
manage.py
package.json
poetry.lock
pyproject.toml
tsconfig.container.json
tsconfig.main.json
webpack.config.js
yarn.lock
tabby-web/tabby/wsgi.py
Eugene Pankov 3ff34b2618 wip
2021-07-06 23:45:52 +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()