Production guidelines for Laravel 11 monoliths, Livewire reactive components, Eloquent ORM query discipline, and queued job workers.
Standardized production guidelines for Laravel 11, Livewire, and PostgreSQL — a server-rendered PHP monolith pattern that avoids a separate frontend build for most CRUD-heavy applications.
Coolify, a self-hosted PaaS for deploying applications and databases, is built on exactly this stack: Laravel + Livewire + Alpine.js + Tailwind CSS + PostgreSQL, run inside Docker.
Model::preventLazyLoading() turns silent N+1 query degradation into a loud local exception, catching the single most common Eloquent performance bug before it reaches production.Yes — AGENTS.md is the open, cross-tool standard read by Cursor, Claude Code, Windsurf, and 30+ other agents. A dedicated .mdc file is also included for Cursor's native .cursor/rules format.
Livewire lets a Laravel monolith ship reactive, dynamically-updating UI while keeping all state and logic in PHP on the server — no separate API layer, no client-server type duplication, and no second build pipeline. It trades some client-side interactivity ceiling for a much simpler architecture, which fits most CRUD-heavy SaaS and admin tools well.
Rails and Laravel solve the same class of problem (server-rendered monolith, batteries-included ORM, background job queue) but have distinct enough conventions -- Eloquent vs ActiveRecord, Livewire vs Hotwire, Artisan vs Rails generators -- that a single AGENTS.md covering both would blur the guidance. This rule is the Laravel-specific counterpart to the Rails + PostgreSQL + Redis rule.
Production guidelines for Django 5 enterprise applications, PostgreSQL connection pooling, Redis caching, and Celery async workers.
Production guidelines for FastAPI, Pydantic v2 validation, Async SQLAlchemy 2.0 (asyncpg), Alembic migrations, and PostgreSQL/Redis.
Architecture guidelines for single-binary Go services using the Echo framework, embedded SQLite, and minimal-JS server-rendered UI.
Enterprise backend architecture guidelines for NestJS modular design, PostgreSQL connection pooling, Redis BullMQ background jobs, and DTO validation.