DEV Community

Discussion on: How do you organise code in a monolith?

Collapse
 
dan_starner profile image
Daniel Starner

Definitely the second option. Most of my web work is in the Python Django and it forces you to lay out your code in related "apps". Apps are just sub-directories with each containing related routes, database models, and functionality.