Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added grpcweb proxy that allows me to access grpc endpoints from the ui #39

Merged
merged 9 commits into from
Jul 10, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ orbs:
parameters:
go-version:
type: string
default: 1.15.13
default: 1.18.0
node-version:
type: string
default: 16.13.0
Expand Down
27 changes: 23 additions & 4 deletions golang/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,29 @@
module github.com/kurtosis-tech/minimal-grpc-server/golang

go 1.15
go 1.18

require (
github.com/improbable-eng/grpc-web v0.15.0
Peeeekay marked this conversation as resolved.
Show resolved Hide resolved
github.com/kurtosis-tech/stacktrace v0.0.0-20211028211901-1c67a77b5409
github.com/sirupsen/logrus v1.4.1
github.com/stretchr/testify v1.7.0
google.golang.org/grpc v1.35.0
github.com/sirupsen/logrus v1.7.0
github.com/soheilhy/cmux v0.1.5
Peeeekay marked this conversation as resolved.
Show resolved Hide resolved
github.com/stretchr/testify v1.8.3
google.golang.org/grpc v1.56.1
)

require (
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rs/cors v1.9.0 // indirect
golang.org/x/net v0.12.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
nhooyr.io/websocket v1.8.7 // indirect
)
Loading