I read some articles and documentation about structuring projects folder.
If I am not wrong the recommended structure is like this:
- shared module
- core module
- feature modules
My application is small, about 8 models, and same number of services, and just 4 views (login/register, and next 3 in app after authentication). Does make sense follow this convention about these 3 types modules for small projects like mine?
I thinking about following structure:
- components
- views
- services
- models
- interceptors
- ...
What do you think? Is it fine too or should I follow recommended one? Thanks for answers.