FREE?
One setup step, then this is a real app your friends can sign into.
- Go to supabase.com, sign in, and click New project. Any name. Save the database password somewhere.
- Wait ~2 min for it to boot. Then open the SQL Editor, paste in everything from
free/schema.sql, and hit Run.
- Go to Authentication → Sign In / Providers → Email and turn OFF "Confirm email". Otherwise you can't sign in without clicking an email link every time.
- Go to Project Settings → API. Copy the Project URL and the anon public key.
- Paste both into the top of
free/index.html where it says SUPABASE_URL.
The anon key is safe to put in this file — it's designed to be public, and the
database's row-level security is what actually protects the data. The service_role
key is the opposite: it bypasses every security rule. Never put that one in a web page, and never send it to anyone.