This commit is contained in:
Eden Kirin
2023-03-23 15:24:06 +01:00
parent 6103ad47a5
commit 83a54a8848

View File

@ -97,6 +97,16 @@ go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.2
```
Install libraries:
```sh
go install
```
Run service:
```sh
make run
```
### Rust services
Update `rustc`
@ -113,3 +123,21 @@ Tonic is a gRPC over HTTP/2 implementation focused on high performance, interope
[Rust and gRPC: A complete guide](https://blog.logrocket.com/rust-and-grpc-a-complete-guide/)
### NodeJS service
Requirements:
- Node 16+
- npm package manager
Install npm packages:
```sh
cd src/serve_currenttime
npm install
```
Run service:
```sh
cd src/serve_currenttime
make run
```