Remix.run Logo
dli123 2 days ago

thanks! we just use good old fashioned postgres running on azure, paired with a node server and blob storage in r2. i like how simple it is, and logs show up in places i'd expect without having to remember how to navigate some ui. queuing was something that took a bit to figure out correctly, but pg-boss ended up being the most straighfoward/easy to deploy on our infra.

swyx 2 days ago | parent [-]

oh man sorry i didnt mean YOUR backend, i mean the backend of the apps that you make. in the demo video you showed something about Yikyak clone. whats the backend of that?

dli123 2 days ago | parent [-]

haha oh, these kinds of clones are mostly just built on basic KV stores that we store in our postgres db! there's a couple different types of KV stores we give the app generations, but it's mostly just differing auth types (global, private, shared w/ friends).

swyx a day ago | parent [-]

decent solution for now. curious the tradeoffs of storing the kv in postgres vs a dedicated db. doesnt matter til the apps take off i guess!