This is a Next.js (TypeScript) + Supabase app.
- Set environment vars
cp .env.local.example .env.local
→ open .env.local and fill the required values
(NEXT_PUBLIC_SUPABASE_URL
, NEXT_PUBLIC_SUPABASE_ANON_KEY
)
- Go to the frontend directory
cd frontend
- Install & run
npm install
npm run dev
Open http://localhost:3000
and you’re set.
Note: never commit
.env.local
(it should be gitignored).