You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dashboard/README.md

120 lines
2.8 KiB
Markdown

2 years ago
# Dashboard [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![GoDoc](https://godoc.org/github.com/go-micro/dashboard?status.svg)](https://godoc.org/github.com/go-micro/dashboard) [![Unit Tests](https://github.com/go-micro/dashboard/actions/workflows/ci.yml/badge.svg)](https://github.com/go-micro/dashboard/actions/workflows/ci.yml) [![Docker](https://github.com/go-micro/dashboard/actions/workflows/docker.yml/badge.svg)](https://github.com/go-micro/dashboard/actions/workflows/docker.yml) [![Go Report Card](https://goreportcard.com/badge/github.com/go-micro/dashboard)](https://goreportcard.com/report/github.com/go-micro/dashboard) [![Vistors](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fxpunch%2Fgo-micro-dashboard&count_bg=%2379C83D&title_bg=%23555555&icon=github.svg&icon_color=%23E7E7E7&title=Vistors&edge_flat=false)](https://hits.seeyoufarm.com)
3 years ago
## Features
2 years ago
- [x] Logo
- [x] Web UI
- [x] Service discovery
2 years ago
- [ ] Register service
- [ ] Deregister service
- [x] Health check
- [ ] Configuration service
2 years ago
- [x] Synchronous communication
- [x] RPC
- [ ] Stream
- [x] Asynchronous communication
- [x] Publish
- [ ] Subscribe
3 years ago
## Installation
```
go install github.com/go-micro/dashboard@latest
```
3 years ago
## Development
### Server
#### Swagger
```
swagger generate spec -o docs/swagger.json -b ./docs
swag init
```
#### Config
```
default username: admin
default password: micro
```
##### ENV
```
export SERVER_ADDRESS=:8082
export SERVER_AUTH_USERNAME=user
export SERVER_AUTH_PASSWORD=pass
```
##### YAML
```
export CONFIG_TYPE=yaml
```
```yaml
server:
env: "dev"
address: ":8082"
swagger:
host: "localhost:8082"
```
##### TOML
```
export CONFIG_TYPE=toml
```
```toml
[server]
env = "dev"
address = ":8082"
[server.swagger]
host = "localhost:8082"
```
3 years ago
### Web UI
[Document](https://github.com/go-micro/dashboard/tree/main/frontend)
3 years ago
#### Generate Web Files
3 years ago
```
go install github.com/UnnoTed/fileb0x@latest
fileb0x b0x.yaml
3 years ago
```
## Docker
3 years ago
```
docker run -d --name micro-dashboard -p 8082:8082 xpunch/go-micro-dashboard:latest
```
## Docker Compose
```
docker-compose -f docker-compose.yml up -d
```
## Kubernetes
```
kubectl apply -f deployment.yaml
3 years ago
```
## Community
- [Discord](https://discord.gg/qV3HvnEJfB)
- [Slack](https://join.slack.com/t/go-micro/shared_invite/zt-175aaev1d-iHExPTlfxvfkOeeKLIYEYw)
- [QQ Group](https://jq.qq.com/?_wv=1027&k=5Gmrfv9i)
## Screen Shots
![Login](docs/screenshots/1.login.png)
![Dashboard](docs/screenshots/2.dashboard.png)
![Services](docs/screenshots/3.services.png)
![Service Detail](docs/screenshots/4.service%20detail.png)
![Nodes](docs/screenshots/5.nodes.png)
![Request](docs/screenshots/6.call.png)
3 years ago
## License
[Apache License 2.0](./LICENSE)