From 6ebf6d57e942a06c5984905fd3d327f48af46c47 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Mon, 27 Aug 2018 15:41:44 +0200 Subject: [PATCH] Add documentation directory --- doc/configuration.example.toml | 35 ++++++++++++++++++++++++++++++++++ doc/todo.md | 7 +++++++ 2 files changed, 42 insertions(+) create mode 100755 doc/configuration.example.toml create mode 100644 doc/todo.md diff --git a/doc/configuration.example.toml b/doc/configuration.example.toml new file mode 100755 index 0000000..14e245f --- /dev/null +++ b/doc/configuration.example.toml @@ -0,0 +1,35 @@ +[global] +smtp.username="XXX" +smtp.password="XXX" +smtp.port="XXX" +smtp.hostname="XXX" + +email.from="no-reply@example.com" +email.to="foo.bar@example.com" +email.subject="Daily tasks for" + +[[account]] +name="private-identity" +platform="trello" +token="XXX" + +[[account]] +name="public-identity" +platform="trello" +token="XXX" + +[[tasklist]] +name="My Lifes Relies on Trello" +account="private-identity" +schedule="* */8 * * *" + +[[tasklist]] +name="Company Management" +account="public-identity" +schedule="* */8 * * *" + +[[tasklist]] +name="Company Project X" +account="public-identity" +schedule="* */8 * * *" + diff --git a/doc/todo.md b/doc/todo.md new file mode 100644 index 0000000..09240d6 --- /dev/null +++ b/doc/todo.md @@ -0,0 +1,7 @@ +# TODO + +* Import tasks from other kanbans (ex: github) +* Collect tasks from all trello boards +* Auto-discover trello boards + fill configuration +* Add web user interface +