toplop
TTCTheo's Typesafe Cult
•Created by rubberburger on 4/7/2023 in #questions
Supabase vs Planetscale for a regular SAAS app
How do you deal with auth and DB calls to supabase with cloudflare workers?Something like this https://supabase.com/docs/guides/functions/auth ? Haven't tested it myself though as for my use case I just call supabase's api directly for db calls which require auth.
47 replies
TTCTheo's Typesafe Cult
•Created by rubberburger on 4/7/2023 in #questions
Supabase vs Planetscale for a regular SAAS app
47 replies
TTCTheo's Typesafe Cult
•Created by rubberburger on 4/7/2023 in #questions
Supabase vs Planetscale for a regular SAAS app
Can't really go wrong with either one. Ultimately depends on your use case. Nowadays, I'd generally lean towards cloudflare pages cause of the unlimited bandwidth unless I need Netlify Identity for Netlify CMS or something.
47 replies
TTCTheo's Typesafe Cult
•Created by rubberburger on 4/7/2023 in #questions
Supabase vs Planetscale for a regular SAAS app
Yeah. I'd go with Cloudflare for the domain name since they provide everything at cost. Also their free tier caching is really useful for reducing bandwidth usage on static assets and Cloudflare Workers is good for reading/querying the DB since the free tier doesn't come with the bandwidth limits that other serverless function providers have and has access to the Workers KV store (which has a pretty decent free tier too).
47 replies
TTCTheo's Typesafe Cult
•Created by rubberburger on 4/7/2023 in #questions
Supabase vs Planetscale for a regular SAAS app
For my project which I want to keep free as long as possible, I'm using both to make use of their strengths and get around their limitations: Supabase for their auth, unlimited API requests, no egress for writes, and using their Database Webhooks to call a serverless function that writes the rows to Planetscale which I use for reads.
47 replies