Open
Description
Summary
Django does not serve static files when DEBUG is set to False, or rather when the application is set to be used in production mode.
Background
During our attempt to move the app to production it was discovered that we need to figure out how to serve static files while in production. Something that is already done in Development.
Details
We need to research how to either use another service like Nginx or apache to serve our content or research on how to remove our static content using something like Django-compressor.
Outcome
In the end, we should be able to use our app with DEBUG set to False so that we can move to production.