https://github.com/albertyw/chase-center-calendar
Calendar for SF Chase Center Events
https://github.com/albertyw/chase-center-calendar
base-flask calendar ical sanfrancisco transportation
Last synced: 3 months ago
JSON representation
Calendar for SF Chase Center Events
- Host: GitHub
- URL: https://github.com/albertyw/chase-center-calendar
- Owner: albertyw
- License: mit
- Created: 2021-06-25T07:05:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-07-20T20:56:12.000Z (3 months ago)
- Last Synced: 2025-07-20T22:21:14.246Z (3 months ago)
- Topics: base-flask, calendar, ical, sanfrancisco, transportation
- Language: Python
- Homepage: https://www.chasecentercalendar.com/
- Size: 1.6 MB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Chase Center Calendar
[](https://drone.albertyw.com/albertyw/chase-center-calendar)
[](https://qlty.sh/gh/albertyw/projects/chase-center-calendar)
[](https://qlty.sh/gh/albertyw/projects/chase-center-calendar)
[](https://www.varsnap.com/project/e671c842-e385-4ce0-a321-7d8659906c68/)This website generates an iCal format calendar of Chase Center events, importable into
Google Calendar, Apple Calendar, and many other calendar appsDevelopment
-----------### Setup
Using [python venv](https://docs.python.org/3/library/venv.html) and
[direnv](https://github.com/direnv/direnv)```bash
python3.13 -m venv env
printf "source env/bin/activate\nunset PS1\n" > .envrc
direnv allow
pip install -e .[test]
ln -s .env.development .env
npm install
```### Spinning up the server:
```bash
npm run build:dev
python app/serve.py
```### Running tests:
```bash
ruff check .
mypy .
shellcheck --exclude=SC1091 bin/*.sh
coverage run -m unittest discover
npm test
```