โ ๏ธ
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
- 1Go to supabase.com and create a free project.
- 2Copy your Project URL and anon key from Project Settings โ API.
- 3Create
.env.localin the project root. - 4In Supabase SQL Editor, run the migrations to create the
notesandcategoriestables. - 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