You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/folder-structure.md
+31-6
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,4 @@
1
+
1
2
# 📁 Folder Structure
2
3
3
4
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
13
14
- Per-language folders for source code:
14
15
-`react/` – Frontend projects built with React and TypeScript
15
16
-`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
17
19
18
20
> 💡 **Why this structure?**
19
21
> 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:
36
38
37
39
Within `apps/` and `libs/`, each project is grouped by its business domain or feature area.
38
40
39
-
### Example:
41
+
### React Example
40
42
41
43
```
42
44
react/
@@ -47,11 +49,34 @@ react/
47
49
└── utils/
48
50
```
49
51
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
+
```
51
78
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.
0 commit comments