Sked lets you solve the problem of "I have all these calendars and I want to share (some) of them with other people". It lets you take any combination of Google calendars and arbitrary other iCalendar feeds and make new feeds that you can then share with people. You can also only share the "I'm busy" data from a calendar, instead of it's full data if you want.
Once you've given someone one of these new feeds, you can always update their permissions afterwards - this means if you add new calendars, you don't need to tell anyone else. Also, if you gave someone too much/too little access, you can fix that.
Most users should just be using the online version
- Install Docker and Docker Compose
- Make a new Google OAuth 2 web app. Javascript origin should be
http://localhost:8000
and Authorised redirect URIs should behttp://localhost:8000/oauth2callback
. - Enable "Google Calendar API" on the developer console
- Copy
.env.example
to.env
, add your new OAuth secret/ID and runsource .env
- Run
docker-compose up --build
- Goto http://localhost:8000
The Docker build is the best option, but here's how to do it without
- Do steps 2-4 of "Local development" to setup Google auth
python manage.py migrate
python manage.py createcachetable
python manage.py runserver 0.0.0.0:8000
- Goto http://localhost:8000