portal: Web portal for network administration and visualization https://github.com/EdgeVPNio/portal
 
 
 
 
Go to file
Prajwalanagaraj 5d7343f2cd Changes for docker testing 2021-03-01 12:40:20 -05:00
controllers Changes implementing long polling for GET overlays 2021-03-01 09:58:52 -05:00
db Changes for docker testing 2021-03-01 12:40:20 -05:00
public Changes for docker testing 2021-03-01 12:40:20 -05:00
server Changes implementing long polling for GET overlays 2021-03-01 09:58:52 -05:00
src Changes for docker testing 2021-03-01 12:40:20 -05:00
views Changes for docker testing 2021-03-01 12:40:20 -05:00
.env Changes for docker testing 2021-03-01 12:40:20 -05:00
.gitignore Added copyright information and made config changes 2021-02-10 15:51:40 -05:00
LICENSE Initial commit 2020-07-22 15:42:34 -04:00
README.md Added copyright information and made config changes 2021-02-10 15:51:40 -05:00
package.json Changes to accomodate updated dependencies wrt react, setup.sh and server.js 2021-02-22 10:01:05 -05:00
setup.sh Changes for docker testing 2021-03-01 12:40:20 -05:00

README.md

Evio Visualizer Portal

Web portal for network administration and visualization

Steps to Run

You can run the application using the following commands:

  • Setup the required infrastructure using the setup script using:

    ./setup.sh

    It will ask you standard questions required to setup an npm project.

  • Make sure to set the environment variables for the application by editing the .env file.

  • Start the server by running the below command:

    node ./server/Server.js

Changes required in the Evio config

To redirect the Evio node information to the above visualizer application, add the below configuration to the Evio config.json file.

 
  "OverlayVisualizer": {
    "Enabled": true,
    "TimerInterval": 30,
    "WebServiceAddress": "*.*.*.*:*",
    "NodeName": "nd-###"
  },

Change the IP and the port to where your visualizer is running.

Software Stack Used

  • MongoDB
  • Node.js
  • Express.js
  • React.js