Last active
December 16, 2015 20:19
-
-
Save jaredlewis/5491660 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 * | |
# External Akimbo / Fireplug APIs - Note this will make some tests fail | |
SOURCEPROXIES_API = "http://127.0.0.1:8000" | |
SITE_ID = 2 | |
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": 'jaredlewis_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