Last active
December 17, 2015 03:19
-
-
Save jaredlewis/5542466 to your computer and use it in GitHub Desktop.
This file contains 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 .base_development import * | |
HTTP_PROTOCOL = "http" | |
STATIC_URL = '/static/' | |
MEDIA_URL = 'https://mynews-media.s3.amazonaws.com/' | |
CACHES = { | |
'default': { | |
'BACKEND': 'django.core.cache.backends.dummy.DummyCache', | |
} | |
} | |
DATABASES = { | |
"default": { | |
"ENGINE": "django.db.backends.postgresql_psycopg2", | |
"NAME": "cory_mynews_api", | |
"USER": "jaredlewis", | |
"PASSWORD": "jaredlewis", | |
"HOST": "10.100.90.2", | |
"PORT": "5432" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment