uccser/cs-field-guide

View on GitHub
infrastructure/production/django/start

Summary

Maintainability
Test Coverage
#!/bin/bash

set -o errexit
set -o pipefail
set -o nounset

python /app/manage.py migrate
python /app/manage.py compilemessages
python /app/manage.py compilejsi18n
gunicorn -c /app/gunicorn.conf.py --bind 0.0.0.0:8000 --log-level 'debug' config.wsgi