Install Docker & docker-compose on your own following these links :
- Docker: Get Docker
- docker-compose: Install Docker Compose
Start by cloning this repository.
Then copy the file .env.dist to a file named .env. For instance:
cp .env.dist .env Next, make sure that there is no application running on port 80, then start all the Docker containers with the following commands:
docker-compose up -dEnter your web container with docker exec :
docker exec -ti app bashInstall dependencies :
composer installInstall front dependencies :
npm installRun migrations :
bin/console doctrine:migration:migrateRun fixtures :
bin/console doctrine:fixtures:load