Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 571 Bytes

File metadata and controls

23 lines (17 loc) · 571 Bytes

fake-fortee for phpcon2023 talk "SymfonyとDoctrineで始める安全なモジュラモノリス"

how to run tests

composer install
symfony console doctrine:schema:update --force --env=test
vendor/bin/phpunit

how to see application working

Install Symfony command first. The instruction is here: https://symfony.com/download#step-1-install-symfony-cli

composer install
docker compose up -d
symfony console doctrine:schema:update --force
symfony console app:demo
symfony server:start -d

Visit http://127.0.0.1:8000 in your browser.