mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-11-22 19:46: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
|