uccser/cs-field-guide

View on GitHub
infrastructure/local/django/start

Summary

Maintainability
Test Coverage
#!/bin/bash

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

python ./manage.py compilemessages
python ./manage.py compilejsi18n
gunicorn -c ./gunicorn.conf.py -b :8000 config.wsgi --reload