Ionic Vue CRUD Example App using Supabase.io, “The Open Source Firebase Alternative”
Looking for a firebase alternative…

I stumbled across Supabase.io a while ago but got interested again when I saw they just got 6M in funding so I figured I would take it for a spin and also do some live coding.
The website says: The Open Source Firebase Alternative
Create a backend in less than 2 minutes. Start your project with a Postgres Database, Authentication, instant APIs, and real-time subscriptions.
Configuring Project
The video is here along with the source code. To get the project to work you will need your own credentials and then modify the config.js
file
import { createClient } from "@supabase/supabase-js";
const SUPABASE_KEY = "FILL_IN_FROM_YOUR_SUPABASE_PROJECT";
const SUPABASE_URL = "FILL_IN_FROM_YOUR_SUPABASE_PROJECT";
export const SUPABASE_CLIENT = createClient(SUPABASE_URL, SUPABASE_KEY);