mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-19 21:11:45 +10:00
* docs(contributing): align development guide with dotenvx workflow - Problem: development.mdx told contributors to use a root `.env` file and export DATABASE_URL manually, while AGENTS.md and compose.dev.yml use `.env.local` loaded through dotenvx for dev and migration commands. - Fix: update the setup, migration, dev-server, and database sections to match the dotenvx commands documented in AGENTS.md. - Verification: preflight_ship.py (upstream bug marker present); duplicate PR check clean; docs-only change. * docs(contributing): add cp command to env setup step - Problem: setup step said to copy .env.example but the bash block only listed variable assignments. - Fix: add explicit cp .env.example .env.local command and label the following block as edits. - Verification: manual review of development.mdx; addresses CodeRabbit review on #3286. * docs(contributing): align AGENTS.md env copy target with dotenvx - Problem: AGENTS.md told contributors to copy .env.example to .env while all dev commands use .env.local. - Fix: update the copy instruction to .env.local for consistency with the dotenvx workflow. - Verification: manual review; folded into #3286 dotenvx alignment PR. * docs(contributing): dotenvx-wrap remaining dev script references - Problem: scripts table and troubleshooting still showed bare pnpm dev/db commands after the dotenvx workflow update. - Fix: prefix dev, db, and port-override examples with dotenvx run -f .env.local --. - Verification: manual review of development.mdx; folded into #3286. --------- Co-authored-by: Amruth Pillai <im.amruth@gmail.com>