Skip to content

Latest commit

 

History

History
61 lines (36 loc) · 1.48 KB

File metadata and controls

61 lines (36 loc) · 1.48 KB

Workshop: Breaking the Monolith

Requirements

Virtual Machine

Start the machine

vagrant up --provider virtualbox

Destroy the machine

vagrant destroy -f

The Application

Start it with

vagrant ssh
cd /vagrant
./bin/start.sh

Call it via browser

http://192.168.33.10:8000

The helper scripts

Composer

# install by default
./bin/composer.sh

# equals
./bin/composer.sh install

# require lib
./bin/composer.sh require ramsey/uuid-doctrine

Running the tests

For simplicity reasons you have to jump in the application container first

./bin/enter

Afterwards call the test runner with

./bin/phpunit

Links