snipt/settings_local.py-template

31 lines
739 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 08:56:28 -07:00
DEBUG = True
INTERCOM_SECRET_KEY = ''
POSTMARK_API_KEY = ''
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 08:56:28 -07:00
SECRET_KEY = ''
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 = ''
USE_SSL = False
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'snipt',
'USER': 'snipt',
'PASSWORD': 'password',
'HOST': 'localhost',
'PORT': ''
}
}
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.simple_backend.SimpleEngine',
},
}