comixify/entrypoint.sh

18 lines
265 B
Bash
Raw Permalink Normal View History

2018-07-31 19:51:39 +00:00
#!/bin/sh
start (){
2018-11-18 22:54:49 +00:00
gunicorn --bind :8008 settings.wsgi:application --timeout 300 --workers 2
2018-07-31 19:51:39 +00:00
}
migrate (){
2018-08-20 23:00:22 +00:00
python3.6 manage.py migrate --noinput
2018-07-31 19:51:39 +00:00
}
collectstatic (){
2018-08-20 23:00:22 +00:00
python3.6 manage.py collectstatic --clear --no-input
2018-07-31 19:51:39 +00:00
}
migrate
collectstatic
start