This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/docker/start.sh

6 lines
97 B
Bash
Raw Normal View History

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