snipt/settings_local.py-template

26 lines
600 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',
'NAME': 'snipt',
'USER': 'snipt',
'PASSWORD': 'password',
'HOST': 'localhost',
'PORT': ''
}
}
HAYSTACK_CONNECTIONS = {
'default': {
2014-10-30 18:08:26 -07:00
'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine',
'URL': 'http://127.0.0.1:9200/',
'INDEX_NAME': 'haystack',
2014-10-30 08:56:28 -07:00
},
}