snipt/settings_local.py-template

19 lines
385 B
Plaintext
Raw Normal View History

2014-10-30 09:17:47 -07:00
CSRF_COOKIE_SECURE = False
2014-10-30 08:56:28 -07:00
DEBUG = True
POSTMARK_API_KEY = ''
2014-10-30 09:22:26 -07:00
SECRET_KEY = 'changeme'
2014-10-30 09:17:47 -07:00
SESSION_COOKIE_SECURE = False
2014-10-30 08:56:28 -07:00
STRIPE_SECRET_KEY = ''
2014-10-30 09:17:47 -07:00
USE_HTTPS = False
2014-10-30 08:56:28 -07:00
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
2019-01-21 17:10:10 -08:00
'NAME': 'snippets',
'USER': 'snippets',
'PASSWORD': '',
2014-10-30 08:56:28 -07:00
'HOST': 'localhost',
'PORT': ''
}
}