Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wcygan/monorepo-jib-grpc
monorepo-jib-grpc
https://github.com/wcygan/monorepo-jib-grpc
Last synced: 2 days ago
JSON representation
monorepo-jib-grpc
- Host: GitHub
- URL: https://github.com/wcygan/monorepo-jib-grpc
- Owner: wcygan
- Created: 2024-02-20T16:36:55.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-20T17:14:56.000Z (9 months ago)
- Last Synced: 2024-02-21T17:58:07.462Z (9 months ago)
- Language: Java
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# monorepo-jib-proto
This shows an example of a client and server who communicate using gRPC. Images are built for both the client and server using Jib and deployed to a Kubernetes cluster using Skaffold.
## Quickstart
1. [Install minikube](https://minikube.sigs.k8s.io/docs/start/)
2. [Install kubectl](https://kubernetes.io/docs/tasks/tools/#kubectl)
3. [Install skaffold](https://skaffold.dev/docs/install/)```
minikube start
``````
skaffold dev
```## Clean up
```
skaffold delete
``````
minikube stop
```## Development
To compile the project (including the protobuf-generated code), run:
```
mvn compile
```Then reload all maven projects in your IDE to index the generated code.