the CU nginx container now always listens on the server's port 8000 since it is only serving to the edge router
the django app's debug settings are now turned on and off with the DEVELOPMENT environment variable rather than the much more opaque PORT variable
makemigrations and migrate commands are no longer run automatically at server start-up, since migrations are now committed to version control (introduced in #809)
the README is updated to account for all of these changes
Closes #818.
NOTE: This PR will require a PR to the operations repo to ensure that the edge routers route requests to port 8000.
With this PR:
nginx
container now always listens on the server's port8000
since it is only serving to the edge routerDEVELOPMENT
environment variable rather than the much more opaquePORT
variablemakemigrations
andmigrate
commands are no longer run automatically at server start-up, since migrations are now committed to version control (introduced in #809)Closes #818.
NOTE: This PR will require a PR to the operations repo to ensure that the edge routers route requests to port 8000.