- Checkout from Git:
git clone https://github.com/BiffBangPow/message-board.git - Install all third party dependancies with composer
composer install --ignore-platform-reqs - Build Application Environment with Docker Compose
docker-compose up -d - Build the database schema
docker-compose exec php vendor/bin/doctrine orm:schema-tool:update --force - Visit the application running in your browser http://localhost:3987/
- Optionally, run the dev fixtures to load dummy data into the database
docker-compose exec php php bin/load-dev-fixtures.php
docker-compose exec php php vendor/bin/phpunit