DEV Community

Cover image for How to Architect Your Project's Directories
Abdulcelil Cercenazi
Abdulcelil Cercenazi

Posted on • Updated on

How to Architect Your Project's Directories

One of the important things that are overlooked by developers while building applications is the folders' structure and names.

Where did it all go wrong? 😬

While learning a new framework, for example, We tend to keep using the structure that we learned during the tutorial in our production code.

How does this structure look mainly?

It describes what are the main building blocks of the framework, and not the application we were building in the tutorial.

What building blocks? πŸ§™πŸΌβ€β™‚οΈ

  • Controllers
  • Services
  • Views
  • Models
  • DTO

Alt Text

Is it really this bad? 🀷🏽
Well, for the sake of understanding how the framework works, it's totally valid.
However, when we go on to build production systems with complex business requirements, this approach becomes impractical.

Why do it differently?

In big systems, while debugging or trying to understand how a piece of code works it would be helpful to view the folders as an open book that tells us:

  • What does this system do.
  • What are the components that build the system.
  • What is the hierarchy the components follow.

Let's look at some examples πŸ‘΄πŸΌ

Here is one of the Standard naming conventions of a Spring Boot application.

Alt Text

It's like saying, I am building this thing, I will use those tools

Alt Text

On the other hand, we have a naming convention that describes the application

Alt Text

It's clear from this structure what's going on:

  • Delivery has Request and Shipment components under it.
  • We also have a Payment component.

it's like saying I am building a restaurant and this is the layout
Alt Text

Conclusion πŸ‘‡πŸΌπŸ‘‡πŸΌ

The folder structure of our application is very crucial to help us understand what is going on in the system and we should take care of making it as clear and descriptive as possible.

Top comments (4)

Collapse
 
jhelberg profile image
Joost Helberg

And there is a doc/ directory of course. Good to bring this forward. Code needs to be accessible to others. Remember, the original writer is this other after three months of not looking at the code.

Collapse
 
jarjanazy profile image
Abdulcelil Cercenazi

Yes, a doc directory with some minimal important docs is also a good idea.

Collapse
 
jhelberg profile image
Joost Helberg

Eh, minimal? A lot is better I think.

Thread Thread
 
jarjanazy profile image
Abdulcelil Cercenazi

Yeah, a lot could be placed somewhere else the codebase. You don't want your repository to get big in order to perform Git operations faster.