From be0fdf0cbcb89dd0e5f906504ecc25f2f3f702e6 Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Mon, 9 Apr 2012 16:32:54 -0400 Subject: [PATCH] add config for content machines --- envs/content.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 envs/content.py diff --git a/envs/content.py b/envs/content.py new file mode 100644 index 0000000000..33c2e5e0a9 --- /dev/null +++ b/envs/content.py @@ -0,0 +1,10 @@ +""" +These are debug machines used for content creators, so they're kind of a cross +between dev machines and AWS machines. +""" +from aws import * + +DEBUG = True +TEMPLATE_DEBUG = True + +EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'