š Boilerplate and Starter for Laravel, Tailwind CSS and Inertia
Clone this project or use it as a template, to create your own Laravel application.
Developer experience first:
Make sure you have your database up and running.
Create a database for your application.
Run the following command on your local environment:
git clone --depth=1 https://github.com/sugarforever/laravel-boilerplate.git my-project-name
cd my-project-name
npm install
composer install
Then, you can copy .env.example and paste it as .env, and fill in the database information.
cp .env.example .env
Then, you can run locally in development mode with live reload to build and watch the assets:
npm run dev
Now, you can launch the Laravel application locally in development mode:
php artisan server
Open http://localhost:8000 with your favorite browser to see your project.