Added some example settings.

This commit is contained in:
Martin Mahner 2013-03-19 13:55:46 +01:00
parent d539631da7
commit 833d0988db

View file

@ -0,0 +1,22 @@
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 = 'dpaste.smtp.EmailBackend'