You only need to:
You're ready to go !
- You can create max 20 todolists.
- A todolist can contains any number of tasks.
- You can create max 256 tasks.
- To keep things simple, a task has two fields:
project
anddescription
- An
address
is a random 52 characters. - You can create max 20 addresses.
- They are not sensitive data, you can share them publicly, that's fine.
- You can attach multiple addresses to a single todolist.
- You can attach a specific address to only one todolist.
- For each address you define what are the other addresses that are allowed to send you tasks
- You only need to have address(es) when you need to send or receive tasks from someones else
Check out ICBTask official cli to learn more about how to manage your tasks/todolists/addresses 👉 here
- You can receive tasks only from addresses that you explicitly allow.
- You need to attach an address to a todolist first before you can receive tasks on that address
- You need to create an address
$ icbtask address add
- Attach the address to a todolist
$ icbtask address attach --address=<your address> --todolist-id=<your todolist id>
- The remote address SHOULD allow you to send it tasks
$ icbtask task share --task-id=<task id> --remote-address=<remote_address>
- You need an address that is attached to a todolist
$ icbtask address attach --address=<your address> --todolist-id=<your todolist id>
- allow the remote address to send you tasks
$ icbtask address allow --address=<your address> --remote-address=<remote address>
Check the API documentation here