make amends (#137)

This commit is contained in:
Yaron Schneider 2021-01-29 14:40:24 -08:00 committed by GitHub
parent b972d70edc
commit cc9fd55cea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
RELEASE_VERSION =v1.0.0-rc-2
RELEASE_VERSION =v1.0.0-rc-3
GDOC_PORT =8888
PROTO_ROOT =https://raw.githubusercontent.com/dapr/dapr/master/dapr/proto/

View File

@ -2,30 +2,30 @@ all: help
.PHONY: http-service
http-service: ## Runs the uncompiled HTTP example service code
dapr run -i serving \
dapr run --app-id serving \
-P http \
-p 8080 \
-H 3500 \
-d ./config \
--log-level debug \
go run serving/http/main.go
go run ./serving/http/main.go
.PHONY: grpc-service
grpc-service: ## Runs the uncompiled gRPC example service code
dapr run -i serving \
dapr run --app-id serving \
-P grpc \
-p 50001 \
-H 3500 \
-d ./config \
--log-level debug \
go run serving/grpc/main.go
go run ./serving/grpc/main.go
.PHONY: client
client: ## Runs the uncompiled example client code
dapr run -i caller \
dapr run --app-id caller \
-d ./config \
--log-level debug \
go run client/main.go
go run ./client/main.go
.PHONY: publish
publish: ## Submits pub/sub events in different cotnent types