blob: a02dd6d0d4c492e0cccfc7d0de2ff93486923ffe [file] [log] [blame] [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/ignite_completion.sh
```
Add `ignite` alias:
```bash
alias ignite='./ignite'
```
For more info, see [Autocomplete for Java Command Line Applications](https://picocli.info/autocomplete.html).