diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 8aa0ddd3..c289d06d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -2,7 +2,7 @@ name: Dashboard tar Release on: push: branches: - - workfolws + - master jobs: package: name: build package diff --git a/DEPLOY.md b/DEPLOY.md index f4352421..f452875a 100644 --- a/DEPLOY.md +++ b/DEPLOY.md @@ -75,10 +75,19 @@ Attention: the file under these packages is compiled under Linux environment, ca port: 9669, // change to running nebula graph port }, ``` + +- Modify proxy setting: `./vendors/config-release.yaml` + ``` + port: 7003 + proxy: + gateway: + target: "127.0.0.1:8090" // change gateway service proxy + prometheus: + target: "127.0.0.1:9091" // change prometheus service proxy + ``` - Start: ```bash - $ cd nebula-graph-dashboard - $ npm run start + $ ./dashboard & ``` - service address: http://127.0.0.1:7003 @@ -94,8 +103,7 @@ $ kill $(lsof -t -i :9200) # stop nebula-stats-exporter service $ kill $(lsof -t -i :9100) # stop node-exporter service $ kill $(lsof -t -i :9090) # stop prometheus service $ kill $(lsof -t -i :8090) # stop nebula-http-gateway -$ cd nebula-graph-dashboard -$ npm run stop # stop nebula-graph-dashboard +$ kill $(lsof -t -i :7003) # stop nebula-graph-dashboard ```