-
Notifications
You must be signed in to change notification settings - Fork 24.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Tailwind, "composer run dev" #6463
Conversation
What about pail in windows |
Would it be possible to add --host and --port? |
@juanborras, you can add the --port, etc, in the dev command manually. in the php artisan serve section. |
I hat pail to be a dev dependency by default!!! |
laravel pail and laravel horizon require PHP-PCNTL extension Not supported for Windows. In my PC definitely i'm using WSL over Ubuntu 24.04 y work fine! |
There needs to be a flag added to the installer to do new installs without having Tailwind installed. |
This PR does two things...
First, it adds a basic Tailwind configuration out of the box. This lets you start using Tailwind immediately without installing any starter kit. Useful if you just want to mess around or build things from scratch.
Second, it adds a
composer run dev
script, which startsphp artisan serve
,php artisan queue:listen --tries=1
,php artisan pail
(now a dev dependency by default), andnpm run dev
all in one command, with color coded output in the terminal usingconcurrently
.This gives you one command to run the application and have all of the basic stuff you need.