/laravel-queues

Testing Laravel's Queue/Jobs system on Large CSV files (Download stream, Read stream)

Primary LanguageCSS

Laravel CSV Download/Process Jobs

The project is based on the below boilerplate. You click the button and a job is sent to download a CSV file using streams and dispatches a second job to read that file as a stream of chunks.

image

image

Original boilerplate

Laravel 8 & TailwindCSS 2 skeleton

Whether you’re watching my tutorials or you are interested in cloning this repo where TailwindCSS is already implemented in an empty Laravel 8 project!

• Author: Code With Dary
• Twitter: @codewithdary
• Instagram: @codewithdary

Requirements

• PHP 7.3 or higher

Version

This Laravel framework is running on a version of 8.48.2 and TailwindCSS is running on 2.2.4.

Usage

Clone the repository

git clone git@github.com:codewithdary/laravel8-tailwindcss2.git

Change directories into laravel8-tailwindcss2

cd laravel8-tailwindcss2/

Install composer

composer install

Create the .env file by duplicating the .env.example file

cp .env.example .env

Set the APP_KEY value

php artisan key:generate

Clear your cache & config (OPTIONAL)

php artisan cache:clear && php artisan config:clear

Finally, run your project in the browser!

php artisan serve