empresalibre.net/mysite/mysite/settings/dev.py

19 lines
461 B
Python

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 = 'django-insecure-rp1=^-+#nizw%-rkwsb@r-%fy3cezq9m&c_a1(%s8yhv8iu%9('
# 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