snipt/settings_local.py-template

19 lines
385 B
Plaintext

CSRF_COOKIE_SECURE = False
DEBUG = True
POSTMARK_API_KEY = ''
SECRET_KEY = 'changeme'
SESSION_COOKIE_SECURE = False
STRIPE_SECRET_KEY = ''
USE_HTTPS = False
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'snippets',
'USER': 'snippets',
'PASSWORD': '',
'HOST': 'localhost',
'PORT': ''
}
}