Supabase

Supabase

Database and authentication

Easy5 min0% complete

What you need

  • A Supabase account (free tier available)
  1. 1.Click "New Project"
  2. 2.Choose your organization
  3. 3.Name it "bord" or whatever you like
  4. 4.Set a strong database password (save it!)
  5. 5.Choose the region closest to you
  6. 6.Click "Create new project"
💡Save the database password somewhere safe - you'll need it later.
  1. 1.Go to Project Settings → API
  2. 2.Copy the "Project URL"
  3. 3.Copy the "anon public" key
  4. 4.Copy the "service_role secret" key
Supabase Project Settings
⚠️The service_role key has full access - keep it secret!
# Add to your .env.local file:
SUPABASE_URL=https://xxx.supabase.co
SUPABASE_ANON_KEY=eyJ...
SUPABASE_SERVICE_ROLE_KEY=eyJ...

Environment Variables

VariableDescriptionExample
SUPABASE_URLYour Supabase project URLhttps://xxx.supabase.co
SUPABASE_ANON_KEYPublic anonymous keyeyJ...
SUPABASE_SERVICE_ROLE_KEYSecret service role keyeyJ...

Test Your Integration

After completing setup, try this prompt in Claude Code:

"Create a table in Supabase to store my leads"