blob: 008de7983d6d98f5bbef74a1fe4babd0030d423b [file] [view]
# Ignite CLI DEVNOTES
## How to build module and add bash/zsh autocompletion to your shell
Build the ignite-3 and cli modules:
```bash
gradlew clean build -x test
```
Install autocompletion script to your shell:
```bash
source build/ignite3_completion.sh
```
Add `ignite` alias:
```bash
alias ignite='./ignite'
```
For more info, see [Autocomplete for Java Command Line Applications](https://picocli.info/autocomplete.html).