From cc8bbcf008d6585ee7d58c2dd8f8282972e26a2b Mon Sep 17 00:00:00 2001 From: Darian Moody Date: Sat, 3 Aug 2019 19:39:47 +0100 Subject: [PATCH 1/3] 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 +``` From 97087beee304f91ad826d97ea1157e3e5a669e08 Mon Sep 17 00:00:00 2001 From: Darian Moody Date: Sat, 3 Aug 2019 19:43:52 +0100 Subject: [PATCH 2/3] Update readme.md --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index d72e4bd..f4e2786 100644 --- a/readme.md +++ b/readme.md @@ -61,7 +61,7 @@ Run database seeder: php artisan db:seed ``` -Run the dev server: +Run the dev server (the output will give the address): ```sh php artisan serve @@ -80,7 +80,7 @@ If you have `phpunit` installed globally, you can run the Ping CRM test suite wi phpunit ``` -Or to install `phpunit` locally, and then run the test suite: +Or you can install `phpunit` locally and subsequently run the test suite: ```sh From 398f2610be94200dc9073e9f5aaae04fbcf7623d Mon Sep 17 00:00:00 2001 From: Jonathan Reinink Date: Wed, 8 Jan 2020 22:37:48 -0500 Subject: [PATCH 3/3] Remove phpunit instructions --- readme.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/readme.md b/readme.md index f4e2786..fc420cb 100644 --- a/readme.md +++ b/readme.md @@ -74,16 +74,8 @@ You're ready to go! Visit Ping CRM in your browser, and login with: ## Running tests -If you have `phpunit` installed globally, you can run the Ping CRM test suite with: +To run the Ping CRM tests, run: -```sh +``` phpunit ``` - -Or you can install `phpunit` locally and subsequently run the test suite: - - -```sh -composer install --dev -./vendor/bin/phpunit -```