"Use single yaml config instead of two json configs"

This reverts commit 8c805999e6.
This commit is contained in:
Cory Lee
2019-03-01 18:04:12 -05:00
parent bab70bd10d
commit 2108b69ff1
16 changed files with 672 additions and 624 deletions

View File

@@ -144,7 +144,7 @@ class::
ProjectType.LMS: {
# Configure each Settings Type, as needed.
SettingsType.AWS: {
SettingsType.PRODUCTION: {
# The python path (relative to this app) to the settings module for the relevant Project Type and Settings Type.
# Optional; Defaults to u'settings'.

View File

@@ -29,7 +29,8 @@ class SettingsType(object):
See https://github.com/edx/edx-platform/master/lms/envs/docs/README.rst for
further information on each Settings Type.
"""
AWS = u'aws'
AWS = u'aws' # aws.py has been deprecated. See https://openedx.atlassian.net/browse/DEPR-14
PRODUCTION = u'production'
COMMON = u'common'
DEVSTACK = u'devstack'
TEST = u'test'

View File

@@ -1,4 +1,4 @@
""" Production settings for zendesk proxy."""
""" AWS settings for zendesk proxy."""
def plugin_settings(settings):