- Need to setup your supabase database -- add your table with you -- remember that object keys are columns, and object values are rows
- Update the fetch-utils.js with your supabase URL and key
- ACP
- Design list item -- add the HTMl elements that you want to display on the list
- TDD my render function for that list item
- ACP
- Add fetchItems function to fetchUtils.js
- Update your app.js
- Get the data from supabase (using fetchItems function) (console.log to make sure the data is coming back)
- loop through each item from supabase and use the render function
- append the html to the page
- ACP
- Design detail page -- add the HTMl elements that you want to display on the list
- TDD render function for the detail
- ACP
- Add fetchItemById function to fetchUtils
- Update your detail.js
- Get the data from supabase (using fetchItemsById function) (console.log to make sure the data is coming back)
- render the item using render function
- append the html to the page
- ACP