From cc8bbcf008d6585ee7d58c2dd8f8282972e26a2b Mon Sep 17 00:00:00 2001 From: Darian Moody Date: Sat, 3 Aug 2019 19:39:47 +0100 Subject: [PATCH] Add extra setup details to README Covering installation & testing. --- readme.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index b5acd9b..d72e4bd 100644 --- a/readme.md +++ b/readme.md @@ -61,6 +61,12 @@ Run database seeder: php artisan db:seed ``` +Run the dev server: + +```sh +php artisan serve +``` + You're ready to go! Visit Ping CRM in your browser, and login with: - **Username:** johndoe@example.com @@ -68,8 +74,16 @@ You're ready to go! Visit Ping CRM in your browser, and login with: ## Running tests -To run the Ping CRM tests, run: +If you have `phpunit` installed globally, you can run the Ping CRM test suite with: -``` +```sh phpunit ``` + +Or to install `phpunit` locally, and then run the test suite: + + +```sh +composer install --dev +./vendor/bin/phpunit +```