Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
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
OpenEdx
configuration
Commits
f2e0f503
Commit
f2e0f503
authored
Jul 31, 2017
by
Shirley He
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add permutations file
parent
2f881bb7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65 additions
and
0 deletions
+65
-0
util/course-permutation-tool/README.rst
+11
-0
util/course-permutation-tool/permutations.json
+54
-0
No files found.
util/course-permutation-tool/README.rst
0 → 100644
View file @
f2e0f503
Course Permutation Tool for Developer Environments
########################
This is a tool to add default courses to developer environments, specifically for
devstack and sandboxes. The goal is for developers to have access to courses with
metadata that matches that in production, and to provide a way to generate course
permutations. It will be comprised of a permutations JSON file, which
includes permutation options and default values, and also a Python script that will
generate the final file that will get passed into a course creation script.
More info to come once finalized
util/course-permutation-tool/permutations.json
0 → 100644
View file @
f2e0f503
{
"permutation_data"
:
{
"start"
:
[
"past"
,
"future"
,
null
],
"end"
:
[
"past"
,
"future"
,
null
],
"seats"
:
[
[
"audit"
],
[
"verified"
],
[
"audit"
,
"verified"
],
[],
null
],
"display_name"
:
[
"International Project Management"
,
"Cybersecurity Fundamentals"
,
""
,
null
],
"mobile_available"
:
[
true
,
false
,
null
]
},
"default_data"
:
{
"start"
:
"past"
,
"end"
:
"future"
,
"seats"
:
[
{
"type"
:
[
"audit"
,
"verified"
],
"upgrade_deadline"
:
"future"
}
],
"display_name"
:
"International Project Management"
,
"mobile_available"
:
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