/whatrunningwhere

Primary LanguagePHPApache License 2.0Apache-2.0

What Running Where

Coverage Status

Install the Application

  • 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 development

To run the application in development, you can run these commands

cd whatrunningwhere
composer start

Or you can use docker-compose to run the app with docker, so you can run these commands:

cd whatrunningwhere
docker-compose up -d

After that, open http://localhost:8080 in your browser.

Run this command in the application directory to run the test suite

composer test