Tailwick works by scanning all of your Blade files, Laravel components, and any other templates for class names, generating the corresponding styles and then writing them to a static CSS file.
It's fast, flexible, and reliable — with zero-runtime.
Make sure to have the Xampp/WampServer/Lampp installed & running in your computer. If you already have installed server on your computer, you can skip this step if your existing PHP version is greater than 8.
Make sure to have the composer installed & running in your computer. If you already have installed server on your computer, you can skip this step.
Make sure to have the Node.js installed & running in your computer. If you already have installed Node on your computer, you can skip this step if your existing node version is greater than 18.
composer install
or
composer i
npm install
or
npm i
php artisan key:generate
php artisan storage:link
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=tailwick_laravel
DB_USERNAME=root
DB_PASSWORD=
MAIL_MAILER=
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"
npm run build
php artisan optimize:clear
php artisan migrate
php artisan db:seed
php artisan serve
php artisan serve --port=8001