Skip to content

Commit

Permalink
mod: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolaCage committed Jan 18, 2022
1 parent 67720bc commit ab60aac
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Dashboard tar Release
on:
push:
branches:
- workfolws
- master
jobs:
package:
name: build package
Expand Down
16 changes: 12 additions & 4 deletions DEPLOY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
```


0 comments on commit ab60aac

Please sign in to comment.