aboutsummaryrefslogtreecommitdiffstats
path: root/docs/testing/developer/devguide/cli.rst
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-03-23 16:52:11 +0800
committerYujun Zhang <zhang.yujunz@zte.com.cn>2017-03-28 14:24:20 +0800
commit70a2d13f97596df1d748bc3ebc31fc19abca23bb (patch)
tree671fb4751d1c1002ba3706b7a378014b95c32bea /docs/testing/developer/devguide/cli.rst
parentcdc3d2a50bb02f2e68e7f497ae73bbb80ba8db35 (diff)
Rename docs/testing/developer/design to docs/testing/developer/devguide
See https://git.opnfv.org/opnfvdocs/tree/docs/testing/testing-dev.rst Change-Id: Iac14adf4a2876fd74972dcf6279f7022e92cb9b5 Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'docs/testing/developer/devguide/cli.rst')
-rw-r--r--docs/testing/developer/devguide/cli.rst24
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/testing/developer/devguide/cli.rst b/docs/testing/developer/devguide/cli.rst
new file mode 100644
index 00000000..487bdec5
--- /dev/null
+++ b/docs/testing/developer/devguide/cli.rst
@@ -0,0 +1,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.