I need a clean skeleton, without default demos and configs, to understand all the configuration process, begin from zero, and bundle creation for Symfony 2.
Thanks!
I need a clean skeleton, without default demos and configs, to understand all the configuration process, begin from zero, and bundle creation for Symfony 2.
Thanks!
The demo files are just one bundle, and they actually help with understanding the configuration for Symfony2. They also are only initialized in the development front controller and are easy to remove by deleting the bundle from your app Kernel and configs.
The Symfony2 framework is very challenging to learn because there are many different ways you can accomplish a given task. Config files can be in different formats and in various locations.
Try using the Interactive Generator command line tool to create a bundle. Here's a really good overview: http://symfony.com/doc/2.0/book/page_creation.html
Good luck!
Download the Standard Edition with the Acme demo, inside that distribution is a file called
README.md
and at the bottom it has a section that describes how to remove the Acme stuff:You can also remove
web/bundles/acmedemo
as well since that is just assets which are installed usingphp app/console assets:install web
.