Skip to content

Instantly share code, notes, and snippets.

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