-
Copy the example environment file:
cp .env.example .env.local
-
Fill in your Supabase credentials in
.env.local:- Get your project URL and keys from Supabase Dashboard
NEXT_PUBLIC_SUPABASE_URL: Your Supabase project URLNEXT_PUBLIC_SUPABASE_PUBLISHABLE_OR_ANON_KEY: Your Supabase anon keySUPABASE_SECRET_KEY: Your Supabase service role key
Install dependencies:
npm install
# or
pnpm install
# or
yarn installRun the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.