It’s easy to have different Django settings per instance in <gondor.io>. For each instance create a deploy/settings_<instance_name>.py module and specify your settings there.

A simple use case for this is to have DEBUG enabled for a development instance but disabled for production. In this case set DEBUG=False in the project’s settings.py module, and set DEBUG=True in deploy/settings_dev.py (this assumes you have created an instance on gondor called ‘dev’).