I am trying to override certain settings in Django's settings.py for production. Instead of using the documented approaches, I decided to add an 'if' statement to the end of the settings.py file and change certain values (which have already been set) if we are on the production machine.

import socket
if not socket.gethostname() == 'local':
    DEBUG = TEMPLATE_DEBUG = False

This somehow messes up settings so that my static files are not served. Everything works fine as soon as I remove this code.

I do not understand why the staticfiles settings get messed up when I change the DEBUG value.

link|improve this question

feedback

1 Answer

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.