snipt/settings_local.py-template

35 lines
908 B
Plaintext
Raw Normal View History

2014-10-20 17:27:51 -07:00
AWS_ACCESS_KEY_ID = ''
AWS_SECRET_ACCESS_KEY = ''
AWS_STORAGE_BUCKET_NAME = ''
2014-10-30 09:17:47 -07:00
CSRF_COOKIE_SECURE = False
2014-10-30 08:56:28 -07:00
DEBUG = True
INTERCOM_SECRET_KEY = ''
POSTMARK_API_KEY = ''
2014-10-30 09:17:47 -07:00
RAVEN_CONFIG = { 'dsn': '' }
2014-10-20 17:27:51 -07:00
S3_URL = 'https://%s.s3.amazonaws.com/' % AWS_STORAGE_BUCKET_NAME
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-20 18:48:09 -07:00
SSLIFY_DISABLE = True
2014-10-20 20:35:02 -07:00
STATICFILES_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
STATIC_URL = '/static/'
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
},
}