Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dhildreth is there a reason for removing the composer install and .env steps in the Sail documentation?

- 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.
Expand Down