mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-15 18:26:34 +03:00
11 lines
177 B
Bash
11 lines
177 B
Bash
#!/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
|