UW-Grading-Standard-LTI

An LTI app for creating grading standards and adding them to a Canvas course


License
Apache-2.0
Install
pip install UW-Grading-Standard-LTI==0.8

Documentation

4.0 Grading Standard LTI App

A Django LTI Application for creating grading standards and adding them to a Canvas course

Installation

Project directory

Install grading-standard-lti in your project.

$ cd [project]
$ pip install UW-Grading-Standard-LTI

Project settings.py

INSTALLED_APPS

'grading_standard',
'grade_conversion_calculator',
'blti',

REST client app settings

RESTCLIENTS_CANVAS_DAO_CLASS = 'Live'
RESTCLIENTS_CANVAS_HOST = 'example.instructure.com'
RESTCLIENTS_CANVAS_OAUTH_BEARER = '...'

BLTI settings

django-blti settings

Project urls.py

url(r'^grading_standard/', include('grading_standard.urls')),