A web UI to share calendar invites from a private caldav server.
Configuration is done through a .py file. See config.sample.py
.
Install via:
$ git clone https://bitbucket.org/_Blue/events
$ cd events
$ pip install .
Run via:
events /path/to/config.py
For production, use waitress:
$ export EVENTS_CONFIG_PATH='/path/to/config.py'
$ waitress-serve --call 'events:create_app'
Run the unit tests via:
$ pytest events