Skip to content

Instantly share code, notes, and snippets.

@bendavis78
Created July 7, 2011 20:05
Show Gist options
  • Save bendavis78/1070420 to your computer and use it in GitHub Desktop.
Save bendavis78/1070420 to your computer and use it in GitHub Desktop.
from defaults import *
ENVIRONMENT = 'development'
DEBUG = True
TEMPLATE_DEBUG = True
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'twg_development',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': ''
}
}
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
# Change this if you are developing on something other than 127.0.0.1
INTERNAL_IPS = ('127.0.0.1',)
# uncomment to use debug toolbar (you'll need django-debug-toolbar installed)
#MIDDLEWARE_CLASSES = MIDDLEWARE_CLASSES + \
# ('debug_toolbar.middleware.DebugToolbarMiddleware',)
#INSTALLED_APPS = INSTALLED_APPS + ('debug_toolbar',)
MEDIA_ROOT = os.path.join(SITE_ROOT, '.media')
FORM_RECIPIENTS = ('ben.davis@wedontplayfair.com',)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment