mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-07-31 14:36:58 +00:00
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
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()
|