{ "$schema": "./ngrpc.schema.json", "protoPaths": [ "proto" ], "protoOptions": { "defaults": true }, "apps": [ { "name": "example-server", "url": "grpc://localhost:4000", "serve": true, "services": [ "services.ExampleService" ], "entry": "entry/main.ts", "stdout": "out.log" }, { "name": "user-server", "url": "grpcs://localhost:4001", "serve": true, "services": [ "services.UserService" ], "entry": "entry/main.go", "stdout": "out.log", "cert": "certs/cert.pem", "key": "certs/cert.key", "ca": "certs/ca.pem" }, { "name": "post-server", "url": "grpcs://localhost:4002", "serve": true, "services": [ "services.PostService" ], "entry": "entry/main.ts", "stdout": "out.log", "cert": "certs/cert.pem", "key": "certs/cert.key", "ca": "certs/ca.pem" } ] }