Fix entrypoint.sh

This commit is contained in:
Lukáš Kucharczyk 2023-01-19 20:20:50 +01:00
parent 0224afcad9
commit 8a1f66bfaf
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
2 changed files with 2 additions and 2 deletions

View File

@ -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 -

View File

@ -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``.