diff --git a/readme.md b/readme.md index a275f5c..62f09fc 100644 --- a/readme.md +++ b/readme.md @@ -10,14 +10,23 @@ Join us on [Bozeman Laravel Slack] - [Composer](https://getcomposer.org/download/) - [NodeJS](https://nodejs.org/en/) ## Getting Started +### Using [Laravel Sail](https://laravel.com/docs/8.x/sail#installation) - Clone this repository on your machine and `cd` into it -- Run `composer install` -- Duplicate the `env.example` file and change the name to `.env` - Run `./vendor/bin/sail up` - To seed your initial admin user, run `./vendor/bin/sail artisan migrate --seed` - To generate an app key, run `./vendor/bin/sail artisan key:generate` - In the terminal, run `npm install && npm run dev` +### Using [Laravel Valet](https://laravel.com/docs/8.x/valet#installation) +- Clone this repository on your machine and `cd` into it +- Run `valet link` +- Setup a new MySQL database called *meetup* + - We'll be connecting using `root` and no password +- To seed your initial admin user, run `php artisan migrate --seed` +- To generate an app key, run `php artisan key:generate` +- In the terminal, run `npm install && npm run dev` +- You can access the front end at http://meetup.test + ## Testing The goal is to create the app using TDD, so any code you write should be tested. We're always eager to help. If you have questions about anything in this app, reach out.