Fix entrypoint.sh
This commit is contained in:
parent
0224afcad9
commit
8a1f66bfaf
|
@ -10,4 +10,4 @@ poetry run python src/timetracker/manage.py collectstatic --clear --no-input
|
|||
echo "Starting server"
|
||||
caddy start
|
||||
cd src/timetracker || exit
|
||||
poetry run python -m gunicorn --bind 0.0.0.0:8001 timetracker.asgi:application -k uvicorn.workers.UvicornWorker --access-logfile - --error-logfile -
|
||||
poetry run python -m gunicorn --bind 0.0.0.0:8001 root.asgi:application -k uvicorn.workers.UvicornWorker --access-logfile - --error-logfile -
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
ASGI config for timetracker project.
|
||||
ASGI config for root project.
|
||||
|
||||
It exposes the ASGI callable as a module-level variable named ``application``.
|
||||
|
||||
|
|
Loading…
Reference in New Issue