Collect static files in entrypoint.sh
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-07 18:10:36 +01:00
parent 9dead362c1
commit d029fda896
2 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,9 @@
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