FounderOS
Settings

Connections

Configure your environment variables. Copy .env.example → .env.local and fill values.

Quick setup
$ cp .env.example .env.local
# Fill in values below, then:
$ npm run dev
Supabase URLRequired
Your Supabase project URL
NEXT_PUBLIC_SUPABASE_URL
Supabase Anon KeyRequired
Public anon key from Supabase dashboard
NEXT_PUBLIC_SUPABASE_ANON_KEY
Supabase Service Role
For server-side admin operations only
SUPABASE_SERVICE_ROLE_KEY
Anthropic API Key
Enables Claude deep review and build plan AI generation
ANTHROPIC_API_KEY
OpenAI API Key
Alternative primary brain for idea review
OPENAI_API_KEY
GitHub Token
Personal access token for repo and PR operations
GITHUB_TOKEN
Vercel Token
For live deployment status and preview URLs
VERCEL_TOKEN
Database setup

After connecting Supabase, run the schema to create all tables:

1. Open Supabase SQL editor
2. Paste contents of supabase/schema.sql
3. Run it
Never commit .env.local to git. It's in .gitignore by default.