[Video] Ionic Vue CRUD Example App using Supabase.io, “The Open Source Firebase Alternative”
Aaron K Saunders
Posted on December 16, 2020
See My Upcoming Book On Ionic & Vue JS
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 SourceFirebase Alternative
Create a backend in less than 2 minutes. Start your project with a Postgres Database, Authentication, instant APIs, and real-time subscriptions.
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);
Supabase On Dev.to
💖 💪 🙅 🚩
Aaron K Saunders
Posted on December 16, 2020
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
ionic [Video] Ionic Vue CRUD Example App using Supabase.io, “The Open Source Firebase Alternative”
December 16, 2020