You can download the prebuilt binary for your platform in github releases page
You need to Install Rust to be able to compile it.
$ git clone https://github.com/icbtask/client
$ cd client
$ cargo build --release
$ ./target/release/icbtask --version
icbtask 0.1.0
To be able to use the cli, you'll need an API Key
$ export API_KEY=<Your API Key>
You can generate one in your profile
💡 You can generate the completion for your shell with this command.
$ icbtask completion <shell>
Check the help to know more about the supported shell
$ icbtask completion --help
$ icbtask todolist add --name="My todolist"
New todolist `My todolist` created
$ icbtask todolist list
+----------+-------------+
| id | name |
+----------+-------------+
| 6a9f48df | My todolist |
+----------+-------------+
$ icbtask task add --todolist-id=6a9f48df --project="Blog" --description="Create a new blog post"
New task created
$ icbtask task list
+----------+---------+------------------------+
| My todolist |
+----------+---------+------------------------+
| id | project | description |
+----------+---------+------------------------+
| 97ea5748 | Blog | Create a new blog post |
+----------+---------+------------------------+
$ icbtask address add
New address created
$ icbtask address list
+------------------------------------------------------+-------------+-------------------+
| address | todolist_id | allowed_addresses |
+------------------------------------------------------+-------------+-------------------+
| hnqt34rmq7lokybzcnqzzhwcjaxmnhmr4ef5g4ufj3lthutn7xpa | | |
+------------------------------------------------------+-------------+-------------------+
$ icbtask address attach --address=hnqt34rmq7lokybzcnqzzhwcjaxmnhmr4ef5g4ufj3lthutn7xpa --todolist-id=6a9f48df
Address attached successfuly
$ icbtask address list
+------------------------------------------------------+-------------+-------------------+
| address | todolist_id | allowed_addresses |
+------------------------------------------------------+-------------+-------------------+
| hnqt34rmq7lokybzcnqzzhwcjaxmnhmr4ef5g4ufj3lthutn7xpa | 6a9f48df | |
+------------------------------------------------------+-------------+-------------------+
$ icbtask address allow \
--address=hnqt34rmq7lokybzcnqzzhwcjaxmnhmr4ef5g4ufj3lthutn7xpa \
--remote-address=uwi7uk5aurxvsqyqvl7qhhnxt57ejn77jxemdqfquraucvm4vu5a
Remote address allowed
$ icbtask address list
+------------------------------------------------------+-------------+-----------------------------------------------------------+
| address | todolist_id | allowed_addresses |
+------------------------------------------------------+-------------+-----------------------------------------------------------+
| hnqt34rmq7lokybzcnqzzhwcjaxmnhmr4ef5g4ufj3lthutn7xpa | 6a9f48df | uwi7uk5aurxvsqyqvl7qhhnxt57ejn77jxemdqfquraucvm4vu5a @Bob |
| | | |
+------------------------------------------------------+-------------+-----------------------------------------------------------+
$ icbtask task share --task-id=97ea5748 --address=lk6v6monyielffwylz4vimn56dkppjrsujo4yp4nnunyijm3fyoa
Task shared
$ icbtask task list
+----------+---------+------------------------+-------------+-------------+
| My todolist |
+----------+---------+------------------------+-------------+-------------+
| id | project | description | shared from | shared with |
+----------+---------+------------------------+-------------+-------------+
| 97ea5748 | Blog | Create a new blog post | | @Bob |
+----------+---------+------------------------+-------------+-------------+
From Bob perspective
$ icbtask task list
+----------+---------+------------------------+-------------+-------------+
| Bob todolist |
+----------+---------+------------------------+-------------+-------------+
| id | project | description | shared from | shared with |
+----------+---------+------------------------+-------------+-------------+
| 97ea5748 | Blog | Create a new blog post | @Badr | |
+----------+---------+------------------------+-------------+-------------+
Checkout the ICBTask documentation here 👉 Docs
Badr BADRI @pythops
GPLv3