We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ce7b3c commit 58dae0aCopy full SHA for 58dae0a
project/README.md
@@ -12,6 +12,20 @@ This Turborepo includes the following packages/apps:
12
- `api-gateway`: [NestJS](https://nestjs.com/) backend serving as an entry point into microservices
13
- `questions-service`: [NestJS](https://nestjs.com/) backend handling all questions related functions
14
15
+```mermaid
16
+graph TD
17
+ A[Web Client] -->|HTTP Request| B(API Gateway)
18
+ B -->|RPC Call| C[Questions Service]
19
+ B -->|RPC Call| D[Other Microservice 1]
20
+ B -->|RPC Call| E[Other Microservice 2]
21
+
22
+ subgraph Microservices
23
+ C
24
+ D
25
+ E
26
+ end
27
+```
28
29
### Packages
30
31
- `@repo/eslint-config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
0 commit comments