๐Ÿ—’๏ธ

Supabase Notes

Next.js ยท Supabase ยท Demo

No env vars
โš ๏ธ

Supabase environment variables not configured

The app needs your Supabase project URL and anon key to connect to the database. Create a .env.local file in the project root with:

NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here

Get these values from supabase.com/dashboard โ†’ Project Settings โ†’ API.

๐Ÿš€ Setup Guide
  1. 1Go to supabase.com and create a free project.
  2. 2Copy your Project URL and anon key from Project Settings โ†’ API.
  3. 3Create .env.local in the project root.
  4. 4In Supabase SQL Editor, run the migrations to create the notes and categories tables.
  5. 5Restart the dev server โ€” the app will connect and load your data.

.env.local

NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here