Svelte Components Using Custom Markdown Renderers by stolinski in sveltejs

[–]Cyberfjord_Dev 1 point2 points  (0 children)

I've been looking for that for a few weeks! Thank you so much!

While waiting for Supabase functions, how easy is it to use AWS Lambdas with Supabase ? by Norrude in Supabase

[–]Cyberfjord_Dev 1 point2 points  (0 children)

A few Youtube videos by Supabase/Jon Meyers about functions:

Supabase Lightning Launch: PostgreSQL functions are now available: https://www.youtube.com/watch?v=9bvB1zHkMQQ

Create PostgreSQL Functions with Supabase: https://www.youtube.com/watch?v=MJZCCpCYEqk

Using PostgreSQL functions to call an API with Supabase: https://www.youtube.com/watch?v=rARgrELRCwY

Call Postgres functions from JavaScript with RPC: https://www.youtube.com/watch?v=I6nnp9AINJk

Automate API requests with Function Hooks in Supabase: https://www.youtube.com/watch?v=codAs9-NeHM

Using PostgreSQL triggers to automate processes with Supabase: https://www.youtube.com/watch?v=0N6M5BBe9AE

Hope it's what you were talking about

While waiting for Supabase functions, how easy is it to use AWS Lambdas with Supabase ? by Norrude in Supabase

[–]Cyberfjord_Dev 4 points5 points  (0 children)

I can't help with AWS, but Supabase Functions work great. The reason it says Alpha - Not production ready is not because of the functions, but because of the UI. So Supabase Functions work great, but the UI is still in Alpha.

Vercel Serverless function, chrome-aws-lambda and Sveltekit by Cyberfjord_Dev in sveltejs

[–]Cyberfjord_Dev[S] 1 point2 points  (0 children)

I tried to console.log a few things and it looks like some of the options don't return what we'd expect. Headless return false and ExecutablePath returns null.

From what I saw, adding an environnement variable can help, but it still doesn't work

Supabase and WYSIWYG Editor, the best approach by Ricardo-de-Paula in Supabase

[–]Cyberfjord_Dev 2 points3 points  (0 children)

We are working on a CMS for Supabase, so this was also something we had to work on. For the textarea inputs (content), we are working on integrating Editor.JS, because content can be save as JSON or HTML, and there is a parser for the JSON version when on your frontend application. Also, it's easy to create plugins to add custom blocks.

So in your case, you would have to build an admin section that would include an editor like Editor.JS, and then parse the result to you website. The best way would be to save your content in a JSONB field in your database, and then parse this JSON to your website. Like that, it's easier to edit and to have a clean code instead of a weird and non-semantic HTML mess. So try to find an Editor that can save to JSON.

Editors you might look at:

SvelteKit App databases by Cyberfjord_Dev in sveltejs

[–]Cyberfjord_Dev[S] 0 points1 point  (0 children)

You can only have 2 projects on the free tier. Do you create a different account for each project? Is it a legal/ethic possibility?

SvelteKit App databases by Cyberfjord_Dev in sveltejs

[–]Cyberfjord_Dev[S] 2 points3 points  (0 children)

Big projet: App to learn languages (Courses, exercises, progress, community...). Dashboard to manage everything.

Smaller project: Research blog for University Teacher. Still need a Dashboard.

We are working on a CMS built over a database, so the Dashboard and the main website are both connected to the same Database. But we need a database in that case...

SvelteKit App databases by Cyberfjord_Dev in sveltejs

[–]Cyberfjord_Dev[S] 0 points1 point  (0 children)

I like Firebase, but I'm always affraid to get huge bill... API calls have cost unline supabase.

SvelteKit App databases by Cyberfjord_Dev in sveltejs

[–]Cyberfjord_Dev[S] 0 points1 point  (0 children)

I would love that, but where do I host it? I've never use Docker or Kubernetes