Hello!
Most of operations in app that I develop based on angularjs that gets json responses from RESTful API write with Phalcon. So I have 3 parts: API without views, Frontend with ui for users and Backend with ui for admins.
And all parts of app uses common models, libraries and settings (db and some services).
Should I use multi-module structure (https://docs.phalcon.io/en/latest/reference/applications.html#multi-module) or better to make 3 apps with common config, models and library folder?
Thanks!