- Installing
-
Download;
-
Run "composer update" from app directory; If Runtime Exception "An error occurred when generating the bootstrap file." occurs, run "php vendor/sensio/distribution-bundle/Sensio/Bundle/DistributionBundle/Resources/bin/build_bootstrap.php" command;
-
Copy app/config/parameters.yml.dist file and rename it to app/config/parameters.yml;
-
Edit app/config/parameters.yml configuration file;
-
Create database with "php app/console doctrine:database:create" command;
-
Database schema can be generated with "php app/console doctrine:schema:update --force" command;
-
Test data for DB can be generated with "php app/console doctrine:fixtures:load" command; (To regenerate test data "php app/console doctrine:fixtures:load --purge-with-truncate" command should be used)