mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
22 lines
390 B
Text
22 lines
390 B
Text
from dpaste.settings 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'
|