Rename project #41

Merged
lukas merged 7 commits from rename-project into main 2023-01-19 19:35:26 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 8a1f66bfaf - Show all commits

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