Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/c0mput3r5c13nt15t/python-radicale-busy-calendar


https://github.com/c0mput3r5c13nt15t/python-radicale-busy-calendar

calendar python radicale-caldav

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Radicale Python Free/Busy Calendar

`gunicorn -c gunicorn_config.py main:app`

## How it works

- A liile bit hacky: readys the radicale collections
- Combines into a single calendar with "Busy" as attribute
- Serves the calendar

## Limitations

- Quick and dirty POC
- Not performant

## Caddy

- More secure behind reverse proxy

```json
{
"match": [
{
"host": ["busy.paulmaier.online"]
}
],
"handle": [
{
"handler": "subroute",
"routes": [
{
"handle": [
{
"handler": "reverse_proxy",
"transport": {
"protocol": "http"
},
"upstreams": [
{
"dial": "127.0.0.1:8080"
}
]
}
]
}
]
}
],
"terminal": true
},
```