This is a simple project made with express in order to filter certain events from the knkv ical calendar so your calendar isn't getting spammed with events you do not care about.
npm i
npm start
Or run the application on a different port:
PORT=3000 npm start
docker build -t knkv-ical-filter-proxy .
docker run -p 8080:8080 -d knkv-ical-filter-proxy
Or run on a different port inside the container (for whatever reason)
docker run -p 3000:3000 -e PORT=3000 -d knkv-ical-filter-proxy