From 970a83d41e55fe8de5f92a2e5f2f1afe98331822 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Mon, 1 Dec 2014 11:15:51 -0500 Subject: [PATCH] removed dev_ike and dev_shared_preview --- cms/envs/dev_ike.py | 16 ---------------- cms/envs/dev_shared_preview.py | 12 ------------ 2 files changed, 28 deletions(-) delete mode 100644 cms/envs/dev_ike.py delete mode 100644 cms/envs/dev_shared_preview.py diff --git a/cms/envs/dev_ike.py b/cms/envs/dev_ike.py deleted file mode 100644 index c593bdcdeb..0000000000 --- a/cms/envs/dev_ike.py +++ /dev/null @@ -1,16 +0,0 @@ -# We intentionally define lots of variables that aren't used, and -# want to import all variables from base settings files -# pylint: disable=wildcard-import, unused-wildcard-import - -# dev environment for ichuang/mit - -# FORCE_SCRIPT_NAME = '/cms' - -from .common import * -from .dev import * - -FEATURES['AUTH_USE_CERTIFICATES'] = True - -FEATURES['USE_DJANGO_PIPELINE'] = False # don't recompile scss - -SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTOCOL', 'https') # django 1.4 for nginx ssl proxy diff --git a/cms/envs/dev_shared_preview.py b/cms/envs/dev_shared_preview.py deleted file mode 100644 index 98c8fa7b15..0000000000 --- a/cms/envs/dev_shared_preview.py +++ /dev/null @@ -1,12 +0,0 @@ -""" -This configuration is have localdev use a preview.localhost hostname for the preview LMS so that we can share -the same process between preview and published -""" - -# We intentionally define lots of variables that aren't used, and -# want to import all variables from base settings files -# pylint: disable=wildcard-import, unused-wildcard-import - -from .dev import * - -FEATURES['PREVIEW_LMS_BASE'] = "preview.localhost:8000"