mirror of
https://github.com/status-im/cabot.git
synced 2025-02-24 18:38:07 +00:00
Currently the first time you run the server you need to manually syncdb, create superuser and collect assets. Do this automatically on container launch
7 lines
160 B
Bash
Executable File
7 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
python manage.py syncdb --noinput
|
|
python manage.py collectstatic --noinput
|
|
python manage.py create_cabot_superuser
|
|
# python manage.py compress
|