Add Heroku support.

This commit is contained in:
2014-11-15 19:38:44 +00:00
parent 32fe3f277a
commit 7e226f2255
6 changed files with 101 additions and 2 deletions

16
app.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "NextAction",
"description": "Todoist API application to provide a auto-populated next action label",
"repository": "https://github.com/nikdoof/NextAction",
"keywords": ["python"],
"env": {
"TODOIST_API_KEY": {
"description": "Your Todoist API Key",
"required": true
},
"TODOIST_NEXT_ACTION_LABEL": {
"description": "The Todoist label to use for next actions.",
"value": "next_action",
"required": false
}
}