From afd5941e0665ccf82bcd216f6339c4e96325b064 Mon Sep 17 00:00:00 2001 From: mike seibel Date: Wed, 11 Dec 2024 15:19:30 -0800 Subject: [PATCH] django-blti from pypi --- README.md | 19 ++++++++++++++++++- coursedashboards/templates/course.html | 2 +- docker/settings.py | 2 +- setup.py | 2 +- 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4a05fdd8..218239b8 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,21 @@ [![Build Status](https://github.com/uw-it-aca/course-dashboards/workflows/Build%2C%20Test%20and%20Deploy/badge.svg?branch=main)](https://github.com/uw-it-aca/course-dashboards/actions) [![Coverage Status](https://coveralls.io/repos/github/uw-it-aca/course-dashboards/badge.svg?branch=main)](https://coveralls.io/github/uw-it-aca/course-dashboards?branch=main) -This is the repository for Instructor Course Dashboards, a project at the University of Washington designed to provide instructors with additional insight into their courses. +## Description +course-dashboards is a project to provide insight to +University of Washington instructors ds into their course membership. + +## Test Drive + +To experience Course Dashboards in a development environment +using mock data, make sure docker is installed on your host +and then run: +``` + # docker-compose up --build +``` +Once built and running, visit: + +``` + http://your-host:8000 +``` +from your brower. diff --git a/coursedashboards/templates/course.html b/coursedashboards/templates/course.html index 978f13c8..3f232084 100644 --- a/coursedashboards/templates/course.html +++ b/coursedashboards/templates/course.html @@ -4,7 +4,7 @@ {% endblock %} {% block exclude_content %} diff --git a/docker/settings.py b/docker/settings.py index bf0016fd..f45e141b 100644 --- a/docker/settings.py +++ b/docker/settings.py @@ -78,7 +78,7 @@ FIXTURE_DIRS = ['uw_person_client/fixtures', 'coursedashboards/fixtures/uw_person'] else: - Debug = False + DEBUG = False INSTALLED_APPS += ['rc_django',] RESTCLIENTS_DAO_CACHE_CLASS = 'coursedashboards.cache.RestClientsCache' RESTCLIENTS_BOOK_HOST = 'https://api.ubookstore.com' diff --git a/setup.py b/setup.py index 7196e0a6..677d2c12 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ 'djangorestframework~=3.15', 'Django-Persistent-Message', 'django-person-client~=1.0', - 'django-blti @ git+https://github.com/uw-it-aca/django-blti.git@ba89503b9d251e82c2cb984b70052f13d276d7c7#egg=django-blti', + 'django-blti~=3.0', 'statistics', ], license='Apache License, Version 2.0',