Skip to content

Instantly share code, notes, and snippets.

@jaredlewis
Last active December 16, 2015 20:19
Show Gist options
  • Save jaredlewis/5491660 to your computer and use it in GitHub Desktop.
Save jaredlewis/5491660 to your computer and use it in GitHub Desktop.
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