8 lines
144 B
Bash
Executable file
8 lines
144 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Collecting static files..."
|
|
uv run python manage.py collectstatic --noinput
|
|
|
|
echo "Starting Django server..."
|
|
exec "$@"
|