I've been learning Supabase for the past 2 weeks because I realised that given the nature of my app Firebase pricing is gonna drain my pockets before the app even takes off. Plus, PostgreSQL is said to be faster.
The app itself relies on 3-4 routine functions. One of these functions GETs data from external API at least every minute (that's 45,000 runs/month), checks if data is synchronized (it mostly is), and on rare occasions (like once or twice a day) updates the DB. Another function runs daily, but results in 100,000s reads and 10,000s writes (so firebase is out of the question).
So I tried BuildShip and FastGen, but their pricing is even worse than Firebase (Buildship allows only 2,000 executions per month and FastGen allows 4000 flow runs per month) ; and it's not very helpful for no-coders either, like FF is for front-end - a little knowledge of JS and help from ChatGPT 3.5 go much longer way than BuildShip or FastGen offer.
So, my other option is to work with Supabase's own Edge Functions. Supabase allows 500,000 Edge Function invocations per month for free! Superb indeed!
The trouble is FF has no GUI to deploy Edge Functions into Supabase, like it does for Firebase Cloud Functions!
So where does a no-coder start???? Is there any guide for no-coders?
Is there any decent solution for no-coders (or low-coders) on how to deploy Edge Functions into Supabase???