blob: 97216fa1de8b86a53806d699ee8a2cf07e9d7d22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
set -o errexit
set -o pipefail
set -o nounset
python /app/manage.py collectstatic --noinput
exec /usr/local/bin/gunicorn config.wsgi --bind 0.0.0.0:5000 --chdir=/app
|