Written in Vanilla JS
https://supabase.nickschnee.ch/
-
If you want to make this demo work in your own environment, you have to create a new file called
supabase.js
in the folderjs
-
Add the following lines and your personal keys to the
js/supabase.js
you just created:
const supabaseUrl = 'your-supabase-url'
const supabaseKey = 'your-public-anon-key'
const supa = supabase.createClient(supabaseUrl, supabaseKey)
export { supa }
- Also you'll need to create a table named
todos
with a columntodo
in your supabase dashboard.