Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 692 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 692 Bytes

Turbo Laravel Task Lists App

This is an example app of that uses Turbo Laravel.

Running it Locally

To run this app locally, you must:

  1. Create the .env file, install the Composer dependencies, and generate the app key:
cp .env.example .env
composer install
php artisan key:generate
  1. Install the NPM dependencies and compile the assets:
npm install && npm run build
  1. 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