Skip to content

Commit 58dae0a

Browse files
authored
add app dependency graph (#2)
1 parent 3ce7b3c commit 58dae0a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

project/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@ This Turborepo includes the following packages/apps:
1212
- `api-gateway`: [NestJS](https://nestjs.com/) backend serving as an entry point into microservices
1313
- `questions-service`: [NestJS](https://nestjs.com/) backend handling all questions related functions
1414

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+
1529
### Packages
1630

1731
- `@repo/eslint-config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)

0 commit comments

Comments
 (0)