mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-15 16:06:34 +03:00
11 lines
177 B
Plaintext
11 lines
177 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit
|
||
|
set -o pipefail
|
||
|
set -o nounset
|
||
|
|
||
|
|
||
|
python /app/manage.py collectstatic --noinput
|
||
|
|
||
|
/usr/local/bin/gunicorn config.wsgi --bind 0.0.0.0:5000 --chdir=/app
|