2025-05-08 20:56:55 +02:00
|
|
|
#!/usr/bin/env sh
|
2025-05-08 21:07:28 +02:00
|
|
|
cd /app/nummi
|
2025-05-08 20:56:55 +02:00
|
|
|
uv run manage.py collectstatic --noinput
|
|
|
|
uv run manage.py migrate --noinput
|
|
|
|
uv run gunicorn --bind :8000 --workers 2 nummi.wsgi:application
|