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

Programming

18040 readers
62 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 [email protected]



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 10 comments
sorted by: hot top controversial new old
[–] [email protected] 6 points 6 days 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.

[–] [email protected] 1 points 6 days ago

You can selfhost supabase really easily with docker.

[–] [email protected] 0 points 6 days ago (1 children)

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

[–] [email protected] 1 points 3 days ago

Interesting constraint - what's the motivation, if you don't mind me asking?

[–] [email protected] 5 points 6 days 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 1 points 5 days ago

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

[–] [email protected] 1 points 5 days ago (1 children)
[–] [email protected] 1 points 5 days ago

any experience on those?

[–] [email protected] 2 points 6 days ago (1 children)

What are you missing on Firebase?

[–] [email protected] 1 points 6 days ago

nothing, just looking for another alternatives