Created
September 10, 2020 03:28
-
-
Save asishrs/9f996f778bbeda73f853099e19d9fade to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# XDS Server | |
# Build xDS Server | |
task xds:build | |
# Deploy xDS Server | |
task xds:deploy | |
# You can run above in a single command | |
task xds:build xds:deploy | |
# gRPC Server | |
# Build gRPC Server | |
task server:build | |
# Deploy gRPC Server | |
task server:deploy | |
# You can run above in a single command | |
task server:build server:deploy | |
# gRPC Client | |
# Build gRPC Client | |
task client:build | |
# Deploy gRPC Client | |
task client:deploy | |
# You can run above in a single command | |
task client:build client:deploy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment