removing .local

This commit is contained in:
Guinsly Mondesir 2016-06-15 17:49:24 -04:00
parent 2887181166
commit ba9772427a
2 changed files with 2 additions and 25 deletions

View file

@ -1,4 +1,3 @@
# Import global settings to make it easier to extend settings. # Import global settings to make it easier to extend settings.
from django.conf.global_settings import * from django.conf.global_settings import *
@ -33,7 +32,7 @@ TIME_ZONE = 'UTC'
SITE_ID = 1 SITE_ID = 1
# Make this unique, and don't share it with anybody. # Make this unique, and don't share it with anybody.
SECRET_KEY = 'sdkjf;lajdfjwjerjqwe' SECRET_KEY = ''
ALLOWED_HOSTS = ( ALLOWED_HOSTS = (
'dpaste.de', 'dpaste.de',
@ -43,7 +42,7 @@ ALLOWED_HOSTS = (
'127.0.0.1', '127.0.0.1',
) )
SECRET_KEY = 'sdkjf;lajdfjwjerjqwe' SECRET_KEY = 'CHANGE_ME'
#============================================================================== #==============================================================================
# I18N # I18N

View file

@ -1,22 +0,0 @@
from dpaste.settings.base import *
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
#('Your Name', 'name@example.com'),
)
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'dpaste',
'USER': 'root',
'PASSWORD': '',
}
}
SECRET_KEY = 'changeme'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'