/angular-grpc-example

Primary LanguageStarlarkMIT LicenseMIT

Angular + Bazel + gRPC

This is a fully functional example that demonstrates the usage of bazel for building an Angular web application and a backend service which communicate via gRPC.

How to run the example?

Run the web application:

bazel run //applications/demo:serve

Run the backend server:

bazel run //server

Build the envoy proxy docker image:

docker build -t envoy proxy

Run the envoy proxy:

docker run -p 50600:50600 envoy

Credits