# Copy the env examplecp .env.local.example .env.local# Fill in your Supabase credentials# NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co# NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key# SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
4
Run database migrations
npx supabase link --project-ref your-project-refpnpm run db:push
Use timestamp-based migration names (e.g., 20260401000000_) for your domain tables. The template uses sequential names (00001_ through 00028_) to avoid conflicts when pulling template updates.