mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
9 lines
109 B
Bash
Executable File
9 lines
109 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
python manage.py migrate
|
|
python manage.py collectstatic --no-input
|
|
|
|
exec "$@"
|