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
92aea035
Commit
92aea035
authored
May 27, 2012
by
ichuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add env for ike's multicourse development and testing
parent
2d96379c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
0 deletions
+61
-0
envs/dev_ike.py
+61
-0
No files found.
envs/dev_ike.py
0 → 100644
View file @
92aea035
"""
This config file runs the simplest dev environment using sqlite, and db-based
sessions. Assumes structure:
/envroot/
/db # This is where it'll write the database file
/mitx # The location of this repo
/log # Where we're going to write log files
"""
from
envs.common
import
*
from
envs.logsettings
import
get_logger_config
from
dev
import
*
#-----------------------------------------------------------------------------
# ichuang
DEBUG
=
True
ENABLE_MULTICOURSE
=
True
# set to False to disable multicourse display (see lib.util.views.mitxhome)
QUICKEDIT
=
True
MITX_ROOT_URL
=
''
COURSE_SETTINGS
=
{
'6.002_Spring_2012'
:
{
'number'
:
'6.002x'
,
'title'
:
'Circuits and Electronics'
,
'xmlpath'
:
'/6002x/'
,
'active'
:
True
,
},
'8.02_Spring_2013'
:
{
'number'
:
'8.02x'
,
'title'
:
'Electricity & Magnetism'
,
'xmlpath'
:
'/802x/'
,
'active'
:
True
,
},
'8.01_Spring_2013'
:
{
'number'
:
'8.01x'
,
'title'
:
'Mechanics'
,
'xmlpath'
:
'/801x/'
,
'active'
:
False
,
},
'6.189_Spring_2013'
:
{
'number'
:
'6.189x'
,
'title'
:
'IAP Python Programming'
,
'xmlpath'
:
'/6189-pytutor/'
,
'active'
:
True
,
},
'8.01_Summer_2012'
:
{
'number'
:
'8.01x'
,
'title'
:
'Mechanics'
,
'xmlpath'
:
'/801x-summer/'
,
'active'
:
True
,
},
'edx_dogfood'
:
{
'number'
:
'edX.00'
,
'title'
:
'Development Test'
,
'xmlpath'
:
'/edx-dogfood/'
,
'is_dogfood'
:
True
,
'active'
:
True
,
},
'edx4edx'
:
{
'number'
:
'edX.01'
,
'title'
:
'edx4edx: edX Author Course'
,
'xmlpath'
:
'/edx4edx/'
,
'active'
:
True
,
},
}
#-----------------------------------------------------------------------------
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