mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-22 09:18:13 +00:00
18 lines
406 B
Bash
18 lines
406 B
Bash
#!/bin/bash
|
|
python manage.py migrate
|
|
|
|
chmod 777 /files/tmp/dss.log
|
|
|
|
touch /srv/logs/gunicorn.log
|
|
touch /srv/logs/access.log
|
|
tail -n 0 -f /srv/logs/*.log &
|
|
|
|
echo "Starting gunicorn"
|
|
exec gunicorn dss.wsgi:application \
|
|
--bind 0.0.0.0:8001
|
|
--workers 4 \
|
|
--log-level=info \
|
|
--log-file=/srv/logs/gunicorn.log \
|
|
--access-logfile=/srv/logs/access.log \
|
|
"$@"
|