All checks were successful
Build and push Docker image / build (push) Successful in 1m36s
5 lines
No EOL
171 B
Bash
Executable file
5 lines
No EOL
171 B
Bash
Executable file
#!/usr/bin/env sh
|
|
cd /app/nummi
|
|
uv run manage.py collectstatic --noinput
|
|
uv run manage.py migrate --noinput
|
|
uv run gunicorn --bind :8000 --workers 2 nummi.wsgi:application |