kanboard-api-client-shell/README.md

18 lines
335 B
Markdown
Raw Normal View History

2020-11-07 20:54:07 +00:00
Basic shell scripts for interacting with a Kanboard installations API.
## Usage
API access credentials should be saved in a `.env` file in the form of:
```sh
export _api_auth='jsonrpc:api_token'
```
Where `api_token` has the value given on Kanboard's settings page.
```sh
# add a 'todo' task:
./add_todo.sh title description
```