cabot/bin/build-app
Jean-Fred Berthelot 2acbf0291c Add build script running the necessary Django commands
Also useful to be run inside Docker.
2016-09-20 10:36:00 +01:00

8 lines
202 B
Bash
Executable File

#!/bin/sh
python manage.py syncdb --noinput
python manage.py migrate cabotapp --noinput
python manage.py migrate djcelery --noinput
python manage.py collectstatic --noinput
# python manage.py compress