From 1cc1d29b5e791b6701fd98b0351915c2401dc689 Mon Sep 17 00:00:00 2001 From: mo khan Date: Thu, 3 Jul 2025 17:26:57 -0600 Subject: chore: use port 8080 to not collide with sparkle port --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0d86c903..fb1913f1 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3