Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonysm/turbo-laravel-task-list
https://github.com/tonysm/turbo-laravel-task-list
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/tonysm/turbo-laravel-task-list
- Owner: tonysm
- Created: 2024-04-03T01:46:26.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-16T01:24:07.000Z (7 months ago)
- Last Synced: 2024-05-01T20:22:26.476Z (7 months ago)
- Language: Blade
- Size: 175 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Turbo Laravel Task Lists App
This is an example app of that uses [Turbo Laravel](https://turbo-laravel.com).
### Running it Locally
To run this app locally, you must:
1. Create the `.env` file, install the Composer dependencies, and generate the app key:
```bash
cp .env.example .env
composer install
php artisan key:generate
```2. Install the NPM dependencies and compile the assets:
```bash
npm install && npm run build
```3. 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:
```bash
php artisan serve
php artisan queue:work --tries=1 --sleep=0
php artisan reverb:start
```