Created
November 17, 2015 23:49
-
-
Save ssbb/e77fa73c8232055eb0d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from .production import * # noqa | |
ALLOWED_HOSTS = ['example.com'] | |
AWS_ACCESS_KEY_ID = '' | |
AWS_SECRET_ACCESS_KEY = '' | |
AWS_STORAGE_BUCKET_NAME = '' | |
DATABASES = { | |
'default': { | |
'ENGINE': '', | |
'NAME': '', | |
'USER': '', | |
'PASSWORD': '', | |
'HOST': '127.0.0.1', | |
'PORT': '5432', | |
'CONN_MAX_AGE': 60 * 5, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment