Laravel blog app (Tall stack with Breeze, Vite, Tailwind).
Use Docker via Laravel Sail and pnpm for the frontend. Full steps: SAIL.md.
Quick start:
composer install
./vendor/bin/sail up -d
./vendor/bin/sail exec laravel.test corepack enable pnpm
./vendor/bin/sail pnpm install
./vendor/bin/sail pnpm run dev
./vendor/bin/sail artisan migrateApp: http://localhost — Vite: http://localhost:5173
- Build & deploy commands: see docs/LARAVEL-CLOUD.md (build commands, deploy commands, and why not to run
db:copy-mariadb-to-sqliteon Cloud). - Without a database for posts: set
POSTS_SOURCE=filesand use Markdown inresources/posts/. See docs/POSTS-SOURCE.md. - Bundled SQLite: run
db:copy-mariadb-to-sqlitelocally, commitdatabase/database.sqlite, then set SQLite in Cloud env. Same doc has details.