microblog.pub/run.sh
2019-08-01 21:44:35 +02:00

5 lines
258 B
Bash
Executable file

#!/bin/bash
python -c "import logging; logging.basicConfig(level=logging.DEBUG); from core import migrations; migrations.perform()"
python -c "from core import indexes; indexes.create_indexes()"
gunicorn -t 600 -w 5 -b 0.0.0.0:5005 --log-level debug app:app