diff options
author | Kanagaraj Manickam <kanagaraj.manickam@huawei.com> | 2017-10-11 09:52:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-11 09:52:35 +0000 |
commit | 5648ee7dcf958cfb54721cfc6a6bbb53447f0248 (patch) | |
tree | 76884fa680a70da9a224324f61b3397756db070d | |
parent | d17c0d3a029bff4b28c1c52f02acb0031b1b2809 (diff) | |
parent | fd560d8bdad53456351950f57a6fd07323d0d35e (diff) |
Merge "Update index.html with installation steps"
-rw-r--r-- | deployment/http/web/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/deployment/http/web/index.html b/deployment/http/web/index.html index 7bc18034..9eece011 100644 --- a/deployment/http/web/index.html +++ b/deployment/http/web/index.html @@ -15,6 +15,28 @@ function redirectToConsole(){ <h2><a id="Download_42"></a>To download</h2> <p style="color:red">Please download ONAP CLI <a href="./onap-cli.zip">here</a></p> +<h3><a id="Download_42"></a>To install</h3> +<p>Please follow the instructions given below for installing ONAP CLI.</p> +<ol> +<li>Un-zip the above download file into <b>/opt/onap/cli folder</b></li> +<li>Run the following commands: +<br>export ONAP_CLI_HOME=$CLI_INSTALL_DIR +<br>export CLI_PRODUCT_VERSION=onap-1.1 +<br> +<br>cd $CLI_INSTALL_DIR +<br> +<br>if [ ! -d ./data ]; then mkdir ./data; fi +<br>if [ ! -d ./onap-cli-schema ]; then mkdir ./onap-cli-schema; fi +<br> +<br>chmod +x ./bin/onap.sh +<br> +<br>#Make onap available in path +<br>ln ./bin/onap.sh $CLI_BIN +<br> +<br>#Print the version +<br>onap -v</li> +</ol> + <h2><a id="Console_42"></a>Web Command console</h2> <p style="color:blue">To open Console, Click <img src="./onap-cli.png" alt="Web Command console" style="width:30px;height:22px;" onclick="redirectToConsole();"> </p> |