First, run the development server:
pnpm devOpen http://localhost:3000 with your browser to see the result.
Vercel will redeploy the app upon any commits to Github
After making major changes to either the Prisma schema or the Supabase database, it's a good idea to create a migration file, which tracks the changes made between interations of the databse via SQL files.
prisma migrate dev --name <migration_name>prisma migrate resolve --applied <migration_name>prisma migrate deploysupabase migration new <migration_name>supabase migrate up