Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thor77/ical-relay

Relay an ical event url while excluding events based on regex patterns
https://github.com/thor77/ical-relay

ical

Last synced: about 8 hours ago
JSON representation

Relay an ical event url while excluding events based on regex patterns

Awesome Lists containing this project

README

        

ical-relay
==========
Relay ical event url and exclude events based on a regex.

# Usage
* Run from source: `go run .`
* Build and run: `rice embed-go && go build . && ./ical-relay`

# Config
```toml
url = "https://example.com/events.ical"

[server]
addr = ":8080"
loglevel = "info"

[profiles]
[profiles.p1]
regex = ["pattern1", "pattern2"]
public = true
```
Access filtered stream on `/profiles/p1`