This page tests all the foundation components we've built.
Go to your Supabase project → SQL Editor → Run the contents of `database/schema.sql`
In SQL Editor, run the contents of `database/functions.sql`
# Test unauthenticated request (should return 401)
curl http://localhost:3000/api/rooms
# Test with invalid data (should return 400)
curl -X POST http://localhost:3000/api/rooms \
-H "Content-Type: application/json" \
-d '{"name": ""}'After creating auth UI, create a user account and test authenticated API calls