mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 21:39:49 +00:00
replace uwsgi with uvicorn
This commit is contained in:
18
docker_assets/backend_start.py
Executable file
18
docker_assets/backend_start.py
Executable file
@@ -0,0 +1,18 @@
|
||||
"""start backend python application, read env var"""
|
||||
|
||||
from os import environ
|
||||
|
||||
import uvicorn
|
||||
|
||||
LOG_LEVEL = "info" if environ.get("DJANGO_DEBUG") else "error"
|
||||
PORT = int(environ.get("TA_BACKEND_PORT", 8080))
|
||||
|
||||
if __name__ == "__main__":
|
||||
uvicorn.run(
|
||||
"config.asgi:application",
|
||||
host="0.0.0.0",
|
||||
port=PORT,
|
||||
workers=4,
|
||||
log_level=LOG_LEVEL,
|
||||
reload=False,
|
||||
)
|
||||
Reference in New Issue
Block a user