The Network Graph Visualizer is a simple application that can visualize a network topology stored in Jalapeño and access over the Jalapeño API Gateway.
You can explore the repository using the links above.
To start the app follow these steps:
- Set your Jalapeño API Gateway address in
api/configs/config.yml
- Set your API address in
frontend/src/configs/config.ts
(If you run local docker skip this step) - Build and start the docker containers
cd api/build
docker build -t network_graph_api:latest -f Dockerfile ../
docker run -d -p 8080:8080 network_graph_api:latest
cd -
cd frontend/docker
docker build -t network_graph_frontend:latest -f Dockerfile ../
docker run -d -p 3000:3000 network_graph_frontend:latest
cd -
- Navigate to http://localhost:3000