Could someone please explain to me the correct file structure of a Symfony2 MVC and ExtJS4 MVC project? (When used together!)
feedback
|
|
Your ExtJS files should be placed in the Resource/public folder of your Bundle
You can use the assets:install command-line command to install it in the web-folder afterwards. You can use Assetic thats included to the Symfony Standard Edition to take care of your JS-Files too. | |||||||||
feedback
|
|
Refer to the heading "Root Tree Structure" of The Definitive Guide to Symfony for the structure of an Symfony application. Quoting from the documentation:
So, you should put you ExtJS code in the web/ directory. You can have a folder structure like this:
The | |||||||||
feedback
|