Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
56385cdf
Commit
56385cdf
authored
Jun 05, 2013
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #79 from edx/ned/private-settings
Developer-private settings files
parents
97c788a3
7e8c06ca
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
.gitignore
+2
-0
cms/envs/dev.py
+8
-0
lms/envs/dev.py
+8
-0
No files found.
.gitignore
View file @
56385cdf
...
...
@@ -10,6 +10,8 @@
.AppleDouble
database.sqlite
requirements/private.txt
lms/envs/private.py
cms/envs/private.py
courseware/static/js/mathjax/*
flushdb.sh
build
...
...
cms/envs/dev.py
View file @
56385cdf
...
...
@@ -165,3 +165,11 @@ MITX_FEATURES['ENABLE_SERVICE_STATUS'] = True
# segment-io key for dev
SEGMENT_IO_KEY
=
'mty8edrrsg'
#####################################################################
# Lastly, see if the developer has any local overrides.
try
:
from
.private
import
*
except
ImportError
:
pass
lms/envs/dev.py
View file @
56385cdf
...
...
@@ -243,3 +243,11 @@ MITX_FEATURES['ENABLE_PEARSON_LOGIN'] = False
ANALYTICS_SERVER_URL
=
"http://127.0.0.1:9000/"
ANALYTICS_API_KEY
=
""
#####################################################################
# Lastly, see if the developer has any local overrides.
try
:
from
.private
import
*
except
ImportError
:
pass
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment