A Laravel skeleton project with Filament, InertiaJS, and more

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 2

Forks: 0

Open Issues: 1

Type:project

v0.0.1 2025-09-13 12:07 UTC

This package is auto-updated.

Last update: 2025-09-16 19:21:12 UTC


README

Laravel SaaS Boilerplate with VILT Stack

⚠️ Development Status: This project is currently in active development and is NOT production-ready. APIs, features, and architecture may change significantly.

A modern Laravel SaaS starter kit built with the VILT stack (Vue, Inertia, Laravel, Tailwind) - your essential foundation for building scalable SaaS applications.

CI License PHP Version Laravel Vue.js TypeScript Vite Tailwind CSS Node.js Inertia.js

Tech Stack

  • Backend: Laravel 12, PHP 8.4+, PostgreSQL, Redis
  • Frontend: Vue 3, TypeScript, Inertia.js, Tailwind CSS 4
  • UI: shadcn/ui components, Lucide icons
  • Development: Docker, Vite, Pest (PHP testing), Playwright (E2E testing)

Quick Start

Prerequisites

  • Docker
  • Node.js 22+ and npm

Setup

  1. Clone and setup

    git clone https://github.com/sauce-base/core.git
    cd core
    chmod +x bin/setup-env
    ./bin/setup-env
  2. Start development

    npm run dev
  3. Visit https://localhost or http://localhost

Manual Setup

# Environment
cp .env.example .env

# Docker services
docker compose up -d

# Dependencies and database
docker compose exec workspace composer install
docker compose exec workspace php artisan key:generate
docker compose exec workspace php artisan migrate:fresh --seed

# Frontend
npm install && npm run build

Development

# Start development server
npm run dev

# Code quality (run before commit)
docker compose exec workspace ./vendor/bin/pint
docker compose exec workspace npm run lint
docker compose exec workspace composer test

# Fresh database
docker compose exec workspace php artisan migrate:fresh --seed

Contributing

  1. Read CLAUDE.md for development guidelines
  2. Run quality checks before committing
  3. Follow conventional commit format: feat: description

License

MIT License - see LICENSE file.

⭐ Star us on GitHub if this project helped you!