# Install Vercel CLIpnpm i -g vercel@latest# Ensure you have version > 44.7.3vercel --version# Install Supabase CLIbrew install supabase/tap/supabasebrew upgrade supabase# Ensure you have version > 2.34.3supabase -v
After starting Supabase, add these variables to your .env.local:
Copy
Ask AI
# Billy [Local]NEXT_PUBLIC_SUPABASE_ANON_KEY=(anon key from supabase start output)SUPABASE_SERVICE_ROLE_KEY=(service_role key from supabase start output)NEXT_PUBLIC_SUPABASE_URL=http://localhost:54321SUPABASE_JWT_SECRET=super-secret-jwt-token-with-at-least-32-characters-longPOSTGRES_HOST="localhost"POSTGRES_PORT=54322POSTGRES_DATABASE="postgres"POSTGRES_PASSWORD="postgres"POSTGRES_USER="postgres"