Three read-only staff-facing dashboards for the Making & Media Creation Lab (MMCL) at York University Libraries.
Each dashboard shows on-shift staff what is happening at their physical location today:
- Space bookings
- Equipment loans
- Makerspace jobs
- Consultation appointments
All data is pulled from the Springshare LibCal API.
Phase 1: Static GitHub Pages site refreshed every 30 minutes via GitHub Actions Phase 2: Docker-containerised interactive web app with persistent workflow state
| Instance | Template | LibCal lid | URL |
|---|---|---|---|
| Scott Media Lab | media-lab | 2632 | /scott/ |
| Markham Media Lab | media-lab | 3432 | /markham-media/ |
| Markham Makerspace | makerspace | 3430 | /markham-makerspace/ |
-
Clone repository
git clone <repository-url> cd MMCL_shiftBoard
-
Create virtual environment
python3.13 -m venv .venv source .venv/bin/activate -
Install dependencies
pip install -r requirements.txt
-
Configure credentials
cp .env.example .env # Edit .env and add your LibCal API credentials -
Test data fetch
python scripts/fetch_data.py
See docs/SETUP.md for complete GitHub Pages deployment instructions, including:
- Configuring GitHub Secrets
- Enabling GitHub Pages
- Setting up the automated workflow
/
├── config/ # Location-specific configuration
├── workflows/ # Workflow JSON definitions
├── scripts/ # Python scripts for data fetching and rendering
├── templates/ # Jinja2 HTML templates
├── static/ # CSS and JavaScript
├── docs/ # GitHub Pages output directory
└── .github/workflows/ # GitHub Actions configuration
Phase 1 Milestones:
- M1 — Repo setup + config schema
- M2 — Data fetch script
- M3 — GitHub Actions workflow
- M4 — Media Lab template
- M5 — Makerspace template
- M6 — Integration + staff review
Phase 1 (GitHub Pages) uses automatic privacy masking:
- Patron names shown as initials only
- Email addresses partially masked
- Full details in docs/PRIVACY.md
Phase 2 (Docker) will display full information with network-level access control.
CLAUDE.md- Complete project briefing, API details, and workflow specificationsdocs/PRIVACY.md- Privacy protection documentationdocs/SETUP.md- GitHub deployment guide
Internal York University Libraries project.