expqr/customsettings.dist.py

15 lines
426 B
Python
Raw Normal View History

2020-10-07 13:25:07 +00:00
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
2020-10-10 19:32:57 +00:00
SECRET_KEY = 'somesecretstring'
2020-10-07 13:25:07 +00:00
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
2020-10-08 17:58:47 +00:00
ALLOWED_HOSTS = []
2020-10-10 19:32:57 +00:00
AWS_BUCKET = "bucket"
AWS_ACCESS_KEY_ID = "accesskey"
AWS_SECRET_ACCESS_KEY = "secretkey"