- Point your virtual host document root to your new application's
public/directory. - Ensure
logs/is web writable.
Further setup steps for database
cd whatrunningwhere
composer install
touch db.sqlite
vendor/bin/phinx migrate -e developmentTo run the application in development, you can run these commands
cd whatrunningwhere
composer startOr you can use docker-compose to run the app with docker, so you can run these commands:
cd whatrunningwhere
docker-compose up -dAfter that, open http://localhost:8080 in your browser.
Run this command in the application directory to run the test suite
composer test