diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-03 17:47:55 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-03 17:47:55 -0600 |
| commit | d5f945421e59beccb9705299d73f0e8a4ab0ba41 (patch) | |
| tree | 10428db08df5461e69da0fbf063e30d490481e5d /Makefile | |
| parent | d1cbd2a1964cce598fc930e159617d4a2539b127 (diff) | |
chore: use port 20000 to prevent colliding with sparkle
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -44,11 +44,11 @@ build-image: @docker build --tag $(IMAGE_TAG) . run-image: build-image - @docker run --rm -p 8080:8080 -p 50051:50051 --init -it $(IMAGE_TAG) + @docker run --rm -p 20000:20000 --init -it $(IMAGE_TAG) # HTTP and gRPC testing targets health-check: - @grpcurl -plaintext localhost:50051 grpc.health.v1.Health/Check + @grpcurl -plaintext localhost:20000 grpc.health.v1.Health/Check list-services: - @grpcurl -plaintext localhost:50051 list + @grpcurl -plaintext localhost:20000 list |
