The code structure inspired by https://github.com/Netflix/dispatch.
Very good structure on how to make a scalable codebase is also in this repo.
Just a brief document about how we should structure our backend codebase.
src/
/<service name>/
models.py
services.py
prompts.py
views.py
utils.py
routers.py
/_<subservice name>/
Always a single file, except if it becomes too long - more than ~500 lines, split it into _subservices
Always split the views into two parts
# All
...
# Requests
...
# Responses
...
If too long → split into multiple files
Single file; if too long → split into multiple files (one prompt per file or so)
Never split into more than one file