diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-03 17:26:57 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-03 17:26:57 -0600 |
| commit | 1cc1d29b5e791b6701fd98b0351915c2401dc689 (patch) | |
| tree | f273c8bae42a40f1717139521a35d11b96d45e7f /Makefile | |
| parent | b931c1085d4e1a6801e3cc4016d7d233ad9276bb (diff) | |
chore: use port 8080 to not collide with sparkle port
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -44,11 +44,11 @@ build-image: @docker build --tag $(IMAGE_TAG) . run-image: build-image - @docker run --rm -p 10000:10000 -p 9901:9901 --init -it $(IMAGE_TAG) + @docker run --rm -p 8080:8080 -p 50051:50051 --init -it $(IMAGE_TAG) # HTTP and gRPC testing targets health-check: - @curl -s http://localhost:10000/health || echo "Service not running" + @grpcurl -plaintext localhost:50051 grpc.health.v1.Health/Check list-services: @grpcurl -plaintext localhost:50051 list |
