= 'Australia/Melbourne' class Dev(Configuration): DEBUG = True TEMPLATE_DEBUG = True class Production(Base): TIMEZONE = 'Europe/Berlin' @property def LANGUAGES(self): return Configuration.LANGUAGES + (('tlh', 'Klingon'),) python manage.py runserver --settings=mysite.settings --configuration=Dev