| commit | e9d3a27b5ef47c03dd44c823d32da11b96c9a3d5 | [log] [tgz] |
|---|---|---|
| author | SANDHYA.JS <sandhya.j@tataelxsi.co.in> | Thu Nov 09 12:50:28 2023 +0530 |
| committer | jssan <sandhya.j@tataelxsi.co.in> | Thu Nov 09 11:58:18 2023 +0200 |
| tree | bf005c71f1eeb9239a2cb8e6012ddc53f3a30288 | |
| parent | 2cac4726572cb976f7ea8fd7126ff2de2c7d2410 [diff] |
Fix Bug 2309: VIM update issue - Fixed this bug by adding warning message for below scenarios 1st scenario : if the config is send empty from UI it'll show the error "Atleast one config information is required" 2nd scenario: config deleting is not allowed user can change the value to true or false based on his/her requirement for this action error message will be "Disallowed operation in config update". - Also for update load config and clear config button will be not available user can only edit his/her config. Change-Id: Ib30aaa069f64ca3fcd1412591a4a69ae27098df2 Signed-off-by: SANDHYA.JS <sandhya.j@tataelxsi.co.in> (cherry picked from commit 46ea49db958888a91926317adf784252695a9359)
This project focuses on the implementation of a web GUI to interact with the Northbound API of OSM.
The project is based on (Angular), a One framework for Mobile & desktop, app-design framework and development platform for creating efficient and sophisticated single-page web apps.
Contact kumaran.m@tataelxsi.co.in, rajesh.s@tataelxsi.co.in, barath.r@tataelxsi.co.in for architecture and design discussions, requests for help, features request and bug reports on NG UI.
Following instructions in the sections below will get you a copy of the project up and running on your local machine for development and testing purposes. See Deployment section for notes on how to deploy the project on a live system.
Angular Setup, Install, & Build Guide
node -version After downloading Node.js, the node package manager (npm) should automatically be installed. Test it out by doing: npm --versionnpm install -g @angular/cli Install Locally npm install @angular/cli After installation done you can check the version using below command. It will display version details of angular-cli ng versionWe are done with the installation of Angular
Clone the NG UI from the repository
git clone "https://osm.etsi.org/gerrit/osm/NG-UI"
Install the packages
cd NG-UI
npm install
The following instructions is for running NG UI locally for development purpose,
On the folder project
Open proxy.conf.json
Add the below code
{ "/osm/*": { "target": "https://OSM-NBI-IP:9999", "secure": false, "logLevel": "info" } }
To run the application give the below command
npm run proxy
To check the typescript lint run the below command
npm run lint
To deploy the NG UI use the Dockerfile
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
This project is licensed under the Apache2 License - see the LICENSE.md file for details