kanboard-api-client-shell/README.md

18 lines
352 B
Markdown
Raw Permalink Normal View History

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