This commit is contained in:
@ -1,11 +1,13 @@
|
||||
#!/bin/bash
|
||||
# Apply database migrations
|
||||
set -euo pipefail
|
||||
echo "Apply database migrations"
|
||||
poetry run python src/web/manage.py migrate
|
||||
|
||||
echo "Collect static files"
|
||||
poetry run python src/web/manage.py collectstatic
|
||||
|
||||
# Start server
|
||||
echo "Starting server"
|
||||
poetry run python src/web/manage.py runserver 0.0.0.0:8000
|
||||
caddy run
|
||||
cd src/web || exit
|
||||
poetry run python -m gunicorn --bind 0.0.0.0:8001 web.asgi:application -k uvicorn.workers.UvicornWorker
|
||||
|
Reference in New Issue
Block a user