Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 510 Bytes

File metadata and controls

39 lines (25 loc) · 510 Bytes

Events

A web UI to share calendar invites from a private caldav server.

Configuration

Configuration is done through a .py file. See config.sample.py.

Deploy

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'

Testing

Run the unit tests via:

$ pytest events