INSTALL (on develop machine with mysql, composer and bower already installed):
-
run "git clone https://github.com/harpcio/sf3-demo.git"
-
run "composer install"
-
run "bower install"
-
configure database in /app/config/parameters.yml
-
run "php bin/console doctrine:migrations:migrate"
-
run "php bin/console fos:user:create" and create "admin"
-
run "php bin/console fos:user:promote" and add to "admin" role "ROLE_ADMIN"
INSTALL (on develop machine with docker only installed):
-
run "git clone https://github.com/harpcio/sf3-demo.git"
-
run "docker-compose up -d"
-
run "make composer install"
-
run "make bower install"
-
configure database in /app/config/parameters.yml
-
run "make console doctrine:migrations:migrate"
-
run "make console fos:user:create" and create "admin"
-
run "make console fos:user:promote" and add to "admin" role "ROLE_ADMIN"
Have fun!