Skip to content

Commit

Permalink
django-blti from pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeseibel committed Dec 11, 2024
1 parent e2cef98 commit afd5941
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion coursedashboards/templates/course.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% endblock %}
{% block exclude_content %}
<style>
div#top_banner, div.course-info, .past-quarter-select, .course-links, footer {
div#top_banner, div.drs_banner, div.course-info, .past-quarter-select, .course-links, footer {
display: none !important;
}
</style>
Expand Down
2 changes: 1 addition & 1 deletion docker/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit afd5941

Please sign in to comment.