Skip to content

Commit a2fb3fe

Browse files
Update folder-structure.md
1 parent fa009ff commit a2fb3fe

File tree

1 file changed

+31
-6
lines changed

1 file changed

+31
-6
lines changed

docs/folder-structure.md

+31-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# 📁 Folder Structure
23

34
This monorepo is organized to support multiple languages, maintain scalable architecture, and encourage separation of concerns. Each level in the structure serves a clear purpose and aligns with good best practices for managing large, multi-stack codebases.
@@ -13,7 +14,8 @@ At the root, you’ll find global configuration and technology-specific entry po
1314
- Per-language folders for source code:
1415
- `react/` – Frontend projects built with React and TypeScript
1516
- `dotnet/` – .NET Core backend projects and libraries
16-
- ... and any other language supported by nx
17+
- `python/` – Analytics or scripting logic
18+
- ... and any other language supported by Nx
1719

1820
> 💡 **Why this structure?**
1921
> This layout enforces strong boundaries between tech stacks, keeps tooling isolated, and makes it easier for developers to navigate unfamiliar parts of the monorepo.
@@ -36,7 +38,7 @@ Inside each language-specific folder:
3638

3739
Within `apps/` and `libs/`, each project is grouped by its business domain or feature area.
3840

39-
### Example:
41+
### React Example
4042

4143
```
4244
react/
@@ -47,11 +49,34 @@ react/
4749
└── utils/
4850
```
4951

50-
This enables:
52+
### Multi-Language Example
53+
54+
```
55+
react/
56+
├── apps/
57+
│ └── dashboard/ # React frontend application
58+
└── libs/
59+
└── transactions/
60+
├── ui/ # UI components related to transactions
61+
├── data-access/ # API clients or hooks (e.g., React Query, Axios)
62+
└── utils/ # Shared utilities specific to the transactions domain
63+
64+
dotnet/
65+
├── apps/
66+
│ └── transactions-api/ # .NET Core Web API for transactions
67+
└── libs/
68+
└── transactions/
69+
├── domain/ # Domain models and business logic
70+
├── data-access/ # EF Core repositories or DB access logic
71+
└── services/ # Application services for orchestration
72+
73+
python/
74+
└── libs/
75+
└── transactions/
76+
└── analytics/ # Data analytics logic (e.g., ML models or pandas pipelines)
77+
```
5178

52-
- Logical grouping by domain (`transactions`, `auth`, `payments`, etc.)
53-
- Easier enforcement of dependency boundaries using tags and scopes
54-
- Better scalability when adding features or refactoring
79+
This demonstrates how a single domain (e.g., `transactions`) can exist across stacks, maintaining modularity and encouraging collaboration.
5580

5681
---
5782

0 commit comments

Comments
 (0)