Skip to content

Commit

Permalink
update plgd bundle deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
jkralik committed May 13, 2024
1 parent c476207 commit 236cf89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion content/en/docs/quickstart/contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ To automatically generate API clients and server stubs in golang protoc plugins
go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway@latest;
go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2@latest;
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest;
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest;
go install github.com/favadi/protoc-go-inject-tag@latest;
go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc@latest;
```

### Instal yq to set up environment
Expand Down
5 changes: 3 additions & 2 deletions content/en/docs/quickstart/deploy-plgd-hub.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ Bundle version of plgd services should be used only for simple testing and devel
To deploy and access plgd hub on your local PC using bundle, run single command:

```bash
docker run -d --name plgd -p 443:443 -p 5683:5683 -p 5684:5684 ghcr.io/plgd-dev/hub/bundle:latest
docker run -d --name plgd -e FQDN=localhost -p 443:443 -p 5683:5683 -p 5684:5684 ghcr.io/plgd-dev/hub/bundle:latest
```

After couple of seconds your plgd hub will become available. The plgd dashboard can be opened in your browser at [https://localhost/](https://localhost/).
After a couple of seconds, your plgd hub will become available. The plgd dashboard can be opened in your browser at [https://localhost/](https://localhost/). To customize the domain or IP, set the FQDN using `-e FQDN=yourdomain.com` or `-e FQDN=IP`.

>Note that bundle issues it's own **self-signed certificate** which needs to be accepted in the browser.
### Authorization
Expand Down

0 comments on commit 236cf89

Please sign in to comment.