diff options
author | AviZi <avi.ziv@amdocs.com> | 2017-06-09 02:39:56 +0300 |
---|---|---|
committer | AviZi <avi.ziv@amdocs.com> | 2017-06-09 02:39:56 +0300 |
commit | 280f8015d06af1f41a3ef12e8300801c7a5e0d54 (patch) | |
tree | 9c1d3978c04cd28068f02073038c936bb49ca9e0 /openecomp-ui/README.md | |
parent | fd3821dad11780d33c5373d74c957c442489945e (diff) |
[SDC-29] Amdocs OnBoard 1707 initial commit.
Change-Id: Ie4d12a3f574008b792899b368a0902a8b46b5370
Signed-off-by: AviZi <avi.ziv@amdocs.com>
Diffstat (limited to 'openecomp-ui/README.md')
-rw-r--r-- | openecomp-ui/README.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/openecomp-ui/README.md b/openecomp-ui/README.md new file mode 100644 index 0000000000..cb103ce889 --- /dev/null +++ b/openecomp-ui/README.md @@ -0,0 +1,34 @@ +# ASDC - Amdocs Onboard UI App + +## Setup + +##### Install `nodejs`: + +download nodejs from here: https://nodejs.org/en/ (take the "current" version with latest features) & install it. +##### Install `gulp` + +install gulp by running the following command `npm install --global gulp-cli` + +##### Install DOX-UI +* pull for latest changes +* go to folder `dox-sequence-diagram-ui` +* run `npm install` +* wait for it... +* go to folder `openecomp-ui` +* run `npm install` +* create a copy of `devConfig.defaults.json` file and name it `devConfig.json` (we already configured git to ignore it so it will not be pushed) +in that file. + + populate the fields of the IP addresses of your BE machine you'd like to connect (**pay attention, it is a JSON file**): + + For example *http://\<host>:\<port>* +* run `npm start` +* your favorite UI will wait for you at: `http://localhost:9000/sdc1/proxy-designer1#/onboardVendor` + + + +#### Troubleshooting +Problem | Why is this happening | Solution +------- | --------------------- | -------- +npm cannot reach destination | proxy | When within managed network, you should set your proxy to NPM as the following: <br> `npm config set proxy http://<host>:<port>` <br> `npm config set https-proxy http://<host>:<port>` +git protocol is blocked and cannot connect | managed network rules for protocols | When within managed network, you should set globally that when git protocol is used, then it will be replaced with "https" <br> `git config --global url."https://".insteadOf git://` |