· 6 years ago · Sep 06, 2019, 06:36 AM
1from dpaste.settings.base import *
2
3DEBUG = False
4
5ADMINS = (
6 #('Your Name', 'name@example.com'),
7)
8MANAGERS = ADMINS
9
10DATABASES = {
11 'default': {
12 'ENGINE': 'django.db.backends.postgresql',
13 'NAME': 'dpaste',
14 'USER': '',
15 'PASSWORD': '',
16 }
17}
18
19SECRET_KEY = 'changeme'
20
21EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'