Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.

Commit af5fc2c

Browse files
committed
Expand readme with further setup instructions
1 parent 8c76903 commit af5fc2c

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Recommended
6060
### Software requirements
6161
* [Composer](https://getcomposer.org/)
6262
* [NPM](https://www.npmjs.com/get-npm)
63-
* Local webserver (PHP 7.1, MySQL 5.5+)
63+
* Local webserver running PHP 7.1 and MySQL 5.5+ (if you are running OSx [Valet](https://laravel.com/docs/5.5/valet) is a quick solution)
6464

6565
#### Install
6666

@@ -69,12 +69,16 @@ Clone and create the .env file (an example has been provided in the __env_ folde
6969
Run:
7070
```bash
7171
composer install
72+
cp _env/local.env .env
7273
php artisan migrate
7374
php artisan db:seed
7475
npm install
76+
npm run dev
7577
```
7678

77-
Make sure everything is working as expected running the provided tests
79+
Make sure everything is working on your local server. Visiting / should display "_Welcome!_".
80+
Double check by running the provided unit tests.
81+
7882
```bash
7983
vendor/bin/phpunit --verbose
8084
```

0 commit comments

Comments
 (0)