First, make sure you have git and node installed.
Next, you'll need to download the repo if you haven't already:
Change directory to the root folder of the project and install dependencies:
cd laravel-livewire-demo
Update composer dependencies
composer install
Create environment settings
cp .env.example.env
vi .env
php artisan key:generate
Migrate database
php artisan migrate
Assets are managed via laravel mix. To compile js && css assets, run
npm install && npm run dev
To keep a laravel mix session running while working, run
npm run watch
Run development server.
php artisan serve