Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
Configuration fixes for staging
  • Loading branch information
pitpalme committed Sep 11, 2015
2 parents 5a4639f + a547629 commit 209cbc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions volunteer_planner/settings/production.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from .base import *

DEBUG = False if not 'BETA' in os.environ else True
DEBUG = os.environ.get('BETA', False)

TEMPLATE_DEBUG = False

STATIC_ROOT = '/var/www/volunteer/static'
STATIC_ROOT = os.environ['STATIC_ROOT']

TEMPLATE_LOADERS = (
(
Expand All @@ -14,7 +14,7 @@
)
),
)
PREPEND_WWW = True if 'BETA' not in os.environ else False
PREPEND_WWW = os.environ.get('BETA', True)

ADMINS = (
('Dorian Cantzen', '[email protected]'),
Expand Down

0 comments on commit 209cbc9

Please sign in to comment.