- NEVER hardcode `localhost` or `127.0.0.1` into the `docker-compose.yml` environment blocks. Always use dynamic variables (e.g., `${VITE_API_BASE_URL:-http://localhost:8000}`) so the configuration can adapt to production environments.
# Prime7 ERP Production Deployment Rules
- NEVER hardcode `localhost` or `127.0.0.1` into the `docker-compose.yml` environment blocks. Always use dynamic variables (e.g., `${VITE_API_BASE_URL:-http://localhost:8000}`) so the configuration can adapt to production environments.
- The React frontend relies on Vite's HMR. When modifying `vite.config.ts`, always ensure `server.hmr.clientPort` gracefully falls back to `5173` for local development, while allowing `443` for secure production reverse proxies (Nginx).
- CORS headers in the FastAPI backend must always remain configurable via the `CORS_ORIGINS` environment variable. Do not hardcode allowed origins in `main.py`.
- Production database URLs must be read from `DATABASE_URL` via the `.env` file, leveraging Docker's internal DNS (e.g., `@postgres:5432`) rather than external IPs.
Comprehensive .cursorrules file for Next.js 15 App Router projects with TypeScript, enforcing server components by default, proper use of "use client" directive, and App Router conventions.
Cursor rules for Python FastAPI projects enforcing async patterns, Pydantic v2 models, dependency injection, and proper error handling.
Rules for consistent React component development with TypeScript interfaces, proper hook patterns, and component composition.
Rules optimizing Cursor Agent mode behavior including multi-file editing context, session management, and autonomous task completion patterns.
Cursor rules for projects using Tailwind CSS with shadcn/ui component library, enforcing consistent utility class usage and component patterns.
Rules for Go backend services enforcing idiomatic Go patterns, proper error handling, and clean architecture conventions.