This is a boilerplate for start new projects with Laravel 9, Sail, Vite, InertiaJS (with Vue3) and TailwindCSS.
Copy and update .env file
APP_NAME=Boilerplate
DB_CONNECTION=mysql
DB_HOST=mysql
DB_USERNAME=sail
DB_PASSWORD=password
Install PHP and NPM dependencies
composer install
npm ci
npm run dev
Run Sail and initial commands for artisan (key, storage, migrate db...)
sail up -d
sail artisan key:generate
sail artisan storage:link
sail artisan migrate
The Laravel framework is open-sourced software licensed under the MIT license.