11 Directory Structure conform Clean Architecture - #18
Merged
Conversation
Moved database folder to backend/infrastructure
thomasdejaeghere
requested review from
Adrien-VL,
LambrechtMaarten,
bramcomyn,
brentjan,
brieromb,
lennertdr and
rvdkeere
February 24, 2025 16:10
brentjan
approved these changes
Feb 24, 2025
Contributor
Author
|
This PR closes #11 |
brieromb
approved these changes
Feb 25, 2025
bramcomyn
approved these changes
Feb 25, 2025
Closed
Contributor
Fun fact, @thomasdejaeghere, you can also define this at the right-hand side of your screen by selecting issue #11 in |
Contributor
Author
I was in fact searching for that functionality! Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Directory structure for backend and frontend is ready for implementation. The structure is conform clean architecture and files for all needed entities (as described by @brentjan) have been made. You can see a basic scheme of the structure below this message. I also added a few example use-cases, these can be used, deleted, modified at will. Now we can set-up the right issues to split up the work over the different entities and use-cases needed for the project.
backend/
│── src/
│ ├── core/ # (Entities & Use Cases)
│ │ ├── entities/ # Domain models (pure TypeScript classes)
│ │ ├── use-cases/ # Business logic use cases
│ ├── infrastructure/ # (External dependencies)
│ │ ├── database/ # TypeORM entities & database config
│ │ ├── repositories/ # Data access layer (TypeORM Repos)
│ ├── application/ # (Interface Adapters)
│ │ ├── controllers/ # Express route handlers
│ │ ├── services/ # Application services
│ │ ├── routes/ # Definitions of routes for entities
│ ├── config/ # Basic interfaces for frequently used classes
│ ├── index.ts
frontend/
│── src/
│ ├── app/
│ │ ├── core/ # (Business logic, use cases if needed)
│ │ ├── infrastructure/ # (External dependencies)
│ │ │ ├── api/ # API services
│ │ │ ├── guards/ # Route guards
│ │ ├── components/ # Reusable UI components
│ │ ├── pages/ # Page-level components (mapped in routes)
│ │ ├── app.routes.ts # Main routing file
│ │ ├── app.component.ts # Root component