Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions example/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cd example/serving/http
dapr run --app-id serving \
--app-protocol http \
--app-port 8080 \
--port 3500 \
--dapr-http-port 3500 \
--log-level debug \
--components-path ./config \
go run main.go
Expand All @@ -24,7 +24,7 @@ cd example/serving/grpc
dapr run --app-id serving \
--app-protocol grpc \
--app-port 50001 \
--port 3500 \
--dapr-grpc-port 3500 \
--log-level debug \
--components-path ./config \
go run main.go
Expand All @@ -39,7 +39,7 @@ cd example/client
dapr run --app-id caller \
--components-path ./config \
--log-level debug \
go run main.go
go run main.go
```

## API
Expand Down
4 changes: 2 additions & 2 deletions example/pubsub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dapr run --app-id sub \
--dapr-http-port 3500 \
--log-level debug \
--components-path ../config \
go run sub.go
go run sub.go
```

### Run Publisher
Expand All @@ -36,7 +36,7 @@ Please change directory to pubsub/pub and run the following command:
dapr run --app-id pub \
--log-level debug \
--components-path ../config \
go run pub.go
go run pub.go
```

## Result
Expand Down