- Move supabase/ from packages/db/ to repo root for simpler CLI usage - Use custom ports (553xx) to avoid conflicts with other local Supabase instances - Add --env-mode=loose to turbo dev so root .env vars reach Next.js - Remove hardcoded --port 3000 from next dev (reads PORT env var instead) - Add .env.example with Supabase env var placeholders - Add supabase local state dirs to .gitignore Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
44 lines
473 B
Plaintext
44 lines
473 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Local env files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Testing
|
|
coverage
|
|
|
|
# Turbo
|
|
.turbo
|
|
|
|
# Supabase local state
|
|
supabase/.branches/
|
|
supabase/.temp/
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# Build Outputs
|
|
.next/
|
|
out/
|
|
build
|
|
dist
|
|
*.tsbuildinfo
|
|
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|