This is an example app of that uses Turbo Laravel.
To run this app locally, you must:
- Create the
.env
file, install the Composer dependencies, and generate the app key:
cp .env.example .env
composer install
php artisan key:generate
php artisan storage:link
- You're going to have to start 3 processes (from different terminals), the local web server, the queue worker process, and the Reverb WebSockets server:
php artisan serve
php artisan queue:work --tries=1 --sleep=0
php artisan reverb:start