This page will demonstrate how to get the REACT GUI running on the local developer machine (Windows/Linux/MacOS).
Prerequisites to running the UI
- Building and running CLAMP
- Go to the clamp directory
Inside the clamp directory go to /clamp/extra/bin-for-dev
./start-db.sh test
Check docker container id
docker ps
Log into docker container
docker exec -it 'container_id' bash
Go into mariadb shell
mysql -u root -p
- Enter password
Go into cldsdb4 database
use cldsdb4;
Verify if there is data in the following table 'loop_templates'
select * from loop_templates;
Once the database is up and running need to start the clamp emulator, by running the following command inside the /clamp/extra/bin-for-dev
./start-emulator.sh
Start the backend service by running the command inside the /clamp/extra/bin-for-dev
./start-backend.sh
Checking out and building the UI
Checkout UI from the repo.
git clone "https://gerrit.nordix.org/onap/policy/gui"
- Change into the "gui-clamp" directory.
Build the UI
mvn clean install
Start the front end UI
npm start --scripts-prepend-node-path
- Once the UI starts at localhost:3000 it will ask for credentials:
Login: admin
Password: password