This website generates an iCal format calendar of Chase Center events, importable into Google Calendar, Apple Calendar, and many other calendar apps
Using python venv and direnv
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
npm run build:dev
python app/serve.py
ruff check .
mypy .
shellcheck --exclude=SC1091 bin/*.sh
coverage run -m unittest discover
npm test