Note: This is a very basic starting point, no authentication is included.
This gets you started with Laravel ^12, SolidJS ^1.9, and TailwindCSS ^4.
- Clone the repository:
git clone git@github.com:jhavenz/laravel-solid-tmpl.git- Jump into the project root:
cd /path/to/your-repo- Install the dependencies:
composer update && npm install- Copy the
.env.examplefile to.env:
cp .env.example .env- Generate the application key:
php artisan key:generate- Run the migrations:
# (Optional) Create the database
touch database/database.sqlite
php artisan migrate
# or
php artisan migrate:fresh --seed- Start the development services:
composer devContributions are welcome.
If you see potential improvements, please let me know or open a PR/issue.