nord
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

dev.py
text/x-python

Download raw (445 bytes)

from .base import *

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '$zy#6hq!fe9pt@3442-f)^474mmv)58!fgb7*tha#izqz%#@o('

# SECURITY WARNING: define the correct hosts in production!
ALLOWED_HOSTS = ['*'] 

EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'


try:
    from .local import *
except ImportError:
    pass