Join us on Bozeman Laravel Slack
- 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
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. The tests are set up to use a sqlite :memory: database, so there is no configuration needed.
- Open the terminal to the root of the project.
- Run
./vendor/bin/sail test