I want to build SPA web app with Angular.js, however it will use Codeigniter MVC on the server side.
I am confused because to follow the Codeigniter MVC rules all views should be under application/views folder and those should be accessible by calling an controller method which will return view. I read about angular angular.js structure and I think the solution described here is very good. However, following this structure all views excluding index should be in public html/app/module_name/ folder.
I am wondering where html views should go? To public HTML or to application/views folder and what is the difference, how it could affect my further app?
I hope that I described my problem well enough.
Thanks in advance.