mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-12-23 23:23:06 +11:00
Added some example settings.
This commit is contained in:
parent
d539631da7
commit
833d0988db
1 changed files with 22 additions and 0 deletions
22
dpaste/settings_local.example.py
Normal file
22
dpaste/settings_local.example.py
Normal 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'
|
Loading…
Reference in a new issue