Docket allows users of both Beeminder and Todoist to get a merged view of both by adding synchronised tasks in Todoist for your Beeminder "last day to do this thing" days.
- Copy
config.yaml.example
toconfig.yaml
and fill in the values there as we go through the later steps - Register app at https://developer.todoist.com/appconsole.html and get the OAuth Client/Secret for
config.yaml
- OAuth Redirect URL there to "<host>/todoist/oauth" (http://localhost:5000/todoist/oauth for local setup)
- Register app at https://www.beeminder.com/apps/new and again get the OAuth values for
config.yaml
- Redirect URL should be "<host>/todoist/oauth" (http://localhost:5000/beeminder/oauth for local setup)
- Post deauthorisation URL isn't set
- If you've already got Bower installed, just run
bower install
. Otherwise, install Node.js and runnpm install
, which will install and run Bower. pip install -r requirements.txt
(preferably within a Virtualenv because that's just sensible)./debug-run.sh
You've now got a running version of the app at http://localhost:5000. Running python docket.py
will synchronise all registered users.
There's a running instance of this at https://docket-heroku.herokuapp.com/ but here's how I did that.
- Get a Heroku account. Free ones work fine.
- Install the Heroku toolbelt
- Goto your dashboard and make a new app. Mine was called "docket-heroku" but you'll need to use another name for yours, and replace anywhere I use that.
heroku git:remote --app docket-heroku
to make it possible to push to deploy to your new app.- We're using multiple buildpacks, both the Python (backend) and Node.js (assets). Just doing
heroku buildpacks:add --index 1 heroku/nodejs
should get you configured correctly, but for reference the result ofheroku buildpacks
should say (and if it doesn't, read the docs)- heroku/nodejs
- heroku/python
- Add the PostgreSQL addon
- Go into the settings for your app and set the following config variables:
- BEEMINDER_CLIENT_ID/BEEMINDER_CLIENT_SECRET - Beeminder app configured as per above, but with your Heroku URL, not localhost
- TODOIST_CLIENT_ID/TODOIST_CLIENT_SECRET - Ditto, but for Todoist
- FLASK_ENCRYPTION_KEY - Something secret for Flask to use for cookie encryption
git push heroku master
- At this point, goto your Heroku URL and check everything works. You might have an error page the first time you load it due to clashes between multiple workers all trying to configure the DB. Just refresh and it should fix itself.
- Add the Scheduler addon and configure the update command (
python docket.py
) to run every so often.