Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/thor77/ical-relay
- Owner: Thor77
- Created: 2019-04-02T10:51:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-07T16:27:18.000Z (over 4 years ago)
- Last Synced: 2024-02-01T18:31:42.870Z (9 months ago)
- Topics: ical
- Language: Go
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`