summaryrefslogtreecommitdiffstats
path: root/docs/testing/developer/devguide/cli.rst
blob: 487bdec50f8411249f74486cf191ddf404224a42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
- Which framework has been used and why
- How to extend to more commands

Original content from DEVELOP.md

    ### CLI

    Click currently supports Bash completion. The prerequisite for this is that the program
    needs to be installed correctly. To install Qtip, execute the following command in root
    folder of Qtip:

    ```
    cd <project root>
    pip install -e .
    ```

    Once the installation has been completed successfully, the following needs to be added to
    the `.bashrc` file:

    ```
    eval "$(_QTIP_COMPLETE=source qtip)"
    ```

    The above would activate command completion for Qtip.