14 lines
426 B
Python
14 lines
426 B
Python
# 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!
|
|
SECRET_KEY = 'somesecretstring'
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = True
|
|
|
|
ALLOWED_HOSTS = []
|
|
|
|
AWS_BUCKET = "bucket"
|
|
AWS_ACCESS_KEY_ID = "accesskey"
|
|
AWS_SECRET_ACCESS_KEY = "secretkey"
|