forked from jazkarta/obsolete-edx-sga
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from mitodl/release-candidate
Release 0.6.0
- Loading branch information
Showing
200 changed files
with
39,610 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "edx_sga/static/js/bower/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
Developing on edx-sga | ||
===================== | ||
|
||
Setup (including devstack setup) | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
#. Install vagrant: http://docs.vagrantup.com/v2/installation/ | ||
#. Install virtualbox: https://www.virtualbox.org/wiki/Downloads | ||
#. Set up devstack:: | ||
|
||
mkdir devstack | ||
cd devstack | ||
curl -L https://raw.githubusercontent.com/edx/configuration/master/vagrant/release/devstack/Vagrantfile > Vagrantfile | ||
vagrant plugin install vagrant-vbguest | ||
vagrant up | ||
|
||
#. Fork https://github.com/mitodl/edx-sga.git to your own github account. | ||
#. Set up your development environment:: | ||
|
||
cd themes/ | ||
git clone https://github.com/your-name/edx-sga.git | ||
vagrant ssh | ||
sudo su edxapp | ||
cd ./themes/ | ||
pip uninstall edx-sga (since it's part of the edx distribution, we have to remove the installed version) | ||
cd edx-sga/ | ||
pip install -e . | ||
paver run_all_servers | ||
|
||
You should now see your fork of the most recent master branch of edx-sga running in the LMS. | ||
|
||
Developing | ||
~~~~~~~~~~ | ||
|
||
#. In your host filesystem:: | ||
|
||
cd /path/to/devstack/edx-platform/themes/edx-sga | ||
git branch feature/your-name/name-of-feature | ||
|
||
#. Write Code, then:: | ||
|
||
git add . | ||
git commit -m "Description of feature added." | ||
git push origin feature/your-name/name-of-feature | ||
|
||
#. Rebase your branch against mitodl/master and resolve any conflicts, following this process: https://github.com/edx/edx-platform/wiki/How-to-Rebase-a-Pull-Request. | ||
#. Open a pull request from your fork/feature branch to mitodl/master | ||
|
||
Also, see testing: https://github.com/mitodl/edx-sga#testing. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "edx-sga", | ||
"version": "0.0.0", | ||
"homepage": "https://github.com/mitodl/edx-sga", | ||
"authors": [ | ||
"ODL Engineering <odl-engineering@mit.edu>" | ||
], | ||
"license": "AGPLv3", | ||
"dependencies": { | ||
"jquery": "~2.1.4", | ||
"URIjs": "~1.16.0", | ||
"requirejs": "~2.1.20", | ||
"underscore": "~1.8.3", | ||
"sinon": "~1.16.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
from .sga import StaffGradedAssignmentXBlock | ||
""" | ||
Module for StaffGradedAssignmentXBlock. | ||
""" | ||
|
||
__version__ = "0.6.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# pylint: disable=missing-docstring |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# pylint: disable=missing-docstring |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.