this post was submitted on 29 Jan 2025
13 points (88.2% liked)

Programming

23971 readers
277 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

I need JSON-like database and it should also have a storage to store media like images or videos.

top 9 comments
sorted by: hot top controversial new old
[–] breakingcups@lemmy.world 6 points 10 months ago (2 children)

Supabase is often mentioned. It's open source and has a free tier, though it is VC driven so I'm sure it'll enshittify at some point.

[–] TxzK@lemmy.zip 1 points 10 months ago

You can selfhost supabase really easily with docker.

[–] occultist8128 0 points 10 months ago

i'm avoiding to use SQL on my current project, since supabase is using postgresql, it's a no no. i've tried it tho

[–] VerPoilu@sopuli.xyz 5 points 10 months ago (1 children)

I'd look into MongoDB Atlas for the database itself and Google Cloud Storage or AWS S3 for storing images and videos with the link to their sources stored in the database.

[–] Tja@programming.dev 1 points 10 months ago

+1 for mongodb. It has a 16MB limit but the GridFS API will chunk bigger files for you, so it's transparent.

[–] ClemaX@lemm.ee 2 points 10 months ago (1 children)

What are you missing on Firebase?

[–] occultist8128 1 points 10 months ago

nothing, just looking for another alternatives

[–] Cyberflunk@lemmy.world 1 points 10 months ago (1 children)
[–] occultist8128 1 points 10 months ago

any experience on those?