snipt/settings_local.py-template

9 lines
265 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-20 18:00:55 -07:00
DEBUG=True
2014-10-20 17:27:51 -07:00
S3_URL = 'https://%s.s3.amazonaws.com/' % AWS_STORAGE_BUCKET_NAME
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/'