takahe/docker/start.sh

6 lines
97 B
Bash
Raw Normal View History

2022-11-09 04:05:51 +00:00
#!/bin/sh
2022-11-19 00:24:43 +00:00
python3 manage.py migrate
2022-11-09 04:05:51 +00:00
2022-11-19 00:24:43 +00:00
exec gunicorn takahe.wsgi:application -w 8 -b 0.0.0.0:8000