Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

edx/gradebook-edx-platform-extensions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 

Repository files navigation

gradebook-edx-platform-extensions ===================

Notice: This repo will be archived in April 2021. #######

gradebook-edx-platform-extensions (gradebook) is a Django application responsible for calculating and persisting user's grade and proforma grade for a course. Gradebook application computes user's grades in a course on score_changed signal of courseware.

Open edX Platform Integration

  1. Update the version of gradebook-edx-platform-extensions in the appropriate requirements file (e.g. requirements/edx/custom.txt).
  2. Add gradebook to the list of installed apps in common.py.
  3. Set these feature flag in common.py
'SIGNAL_ON_SCORE_CHANGED': True,
'STUDENT_GRADEBOOK': True
  1. Install gradebook app via requirements file
$ pip install -r requirements/edx/custom.txt
  1. (Optional) Run tests to make sure gradebook app is integrated:
$ python manage.py lms --settings test test gradebook.tests