7 lines
195 B
Bash
Executable file
7 lines
195 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
python3 -m flask db upgrade # this does not actually return error codes properly!
|
|
python3 -m flask cron_setup
|
|
|
|
/usr/local/bin/supervisord -c /etc/supervisord.conf
|