You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Updating to dapr runtime - master
Signed-off-by: Elena Kolevska <[email protected]>
* Updates the sdk version in the README. Gives the rest of the instructions in the file some love.
Signed-off-by: Elena Kolevska <[email protected]>
* Fixes typo
Signed-off-by: Elena Kolevska <[email protected]>
---------
Signed-off-by: Elena Kolevska <[email protected]>
Signed-off-by: Zachary Edgell <[email protected]>
Browse through more examples to understand the SDK better: [View examples](./examples)
52
54
53
55
## Building
54
56
55
-
To build
57
+
To build the SDK run:
56
58
57
59
```bash
58
60
cargo build
59
61
```
60
62
61
-
>Note: The proto buf client generation is built into `cargo build` process so updating the proto files under `dapr/` is enough to update the proto buf client.
63
+
>Note: The protobuf client generation is built into `cargo build` process so updating the proto files under `dapr/` is enough to update the protobuf client.
64
+
65
+
## Updating .proto files from upstream Dapr
66
+
67
+
To fetch the latest .proto files from Dapr execute the script `update-protos.sh`:
62
68
63
-
## To refresh .proto files from upstream dapr
69
+
```bash
70
+
./update-protos.sh
71
+
```
64
72
65
-
1. Just need to run update-protos.sh, which will basically fetch latest proto updates.
66
-
2. By default, it picks from master proto. To specify a particular release/version, please specify with a -v flag
73
+
By default, the script fetches the latest proto updates from the master branch of the Dapr repository. If you need to choose a specific release or version, use the -v flag:
0 commit comments