Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 671 Bytes

File metadata and controls

20 lines (14 loc) · 671 Bytes

Generating gRPC interface and Protobuf

As a good practice create a python virtual environment:

python3 -m venv <env_name>
source <env_name>/bin/activate

Linux and MacOS

Run the following commands:

pip3 install -r tools/requirements.txt
export DAPR_BRANCH=release-1.16 # Optional, defaults to master
./tools/regen_grpcclient.sh

Note: To use the newly generated protobuf stubs and gRPC interface replace daprd with edge version of daprd built from master branch. Refer this for instructions on how to build daprd from master.