Skip to content

Commit a28c9c8

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

File tree

1 file changed

+11
-30
lines changed

1 file changed

+11
-30
lines changed

docs/folder-structure.md

+11-30
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ At the root, you’ll find global configuration and technology-specific entry po
1414
- Per-language folders for source code:
1515
- `react/` – Frontend projects built with React and TypeScript
1616
- `dotnet/` – .NET Core backend projects and libraries
17-
- `python/` – Analytics or scripting logic
1817
- ... and any other language supported by Nx
1918

2019
> 💡 **Why this structure?**
@@ -38,45 +37,27 @@ Inside each language-specific folder:
3837

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

41-
### React Example
42-
43-
```
44-
react/
45-
└── libs/
46-
└── transactions/
47-
├── data-access/
48-
├── ui/
49-
└── utils/
50-
```
51-
5240
### Multi-Language Example
5341

5442
```
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-
6443
dotnet/
6544
├── apps/
66-
│ └── transactions-api/ # .NET Core Web API for transactions
45+
│ ├── transactions-api/ # .NET Core Web API for transactions
46+
│ └── transactions-api-test/ # Integration or unit tests for API
6747
└── 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
48+
├── transactions-domain-model/ # Domain models and core logic
49+
└── transactions-domain-model-test/ # Tests for the domain logic
7250
73-
python/
51+
react/
52+
├── apps/
53+
│ ├── transactions/ # React frontend app
54+
│ └── transactions-e2e/ # End-to-end Cypress tests
7455
└── libs/
75-
── transactions/
76-
└── analytics/ # Data analytics logic (e.g., ML models or pandas pipelines)
56+
── transactions-data-access/ # API clients or hooks (e.g., React Query)
57+
└── transactions-ui/ # UI components for the transaction domain
7758
```
7859

79-
This demonstrates how a single domain (e.g., `transactions`) can exist across stacks, maintaining modularity and encouraging collaboration.
60+
This reflects a real-world implementation of a shared `transactions` domain across multiple stacks.
8061

8162
---
8263

0 commit comments

Comments
 (0)