# Copy to .env for local development. Real .env is gitignored. # Matches docker-compose.yml dev credentials (dev-only, never reuse elsewhere). DATABASE_URL=postgres://mdv:mdv_dev_only@localhost:5432/mercadodevida TEST_DATABASE_URL=postgres://mdv:mdv_dev_only@localhost:5432/mercadodevida_test REDIS_URL=redis://localhost:6379 # Feature flags: FLAG_=true|false (parsed into the flag store at boot). # Unknown flags default to OFF. Flags can be flipped at runtime via the store. FLAG_EXAMPLE_FEATURE=false