Hi, I'm not sure where to ask, so I'll ask here: I...
# kotless
s
Hi, I'm not sure where to ask, so I'll ask here: I'm a mobile dev and I'm trying to figure out how to set up a backend for a personal project. I expect to only ever need to
GET
data from the backend and I'd like to update that data on deployments (so people can submit updates to a GitHub repo for ease of collaboration). Is this an ideal usecase for serverless? I had a solution in Ktor that was deploying to Heroku, but they got rid of their free tier and now that I'm poking around again, it looks like serverless might naturally align with my usecase a little better (but I'm not sure, since I have no real backend experience to use as a reference point).
f
if the data is static, and you really just update it on deployments, maybe you could look into some static hosting
s
Can I query statically hosted content to get subsets of the information? I'm currently hosting a CSV and parsing it locally, but I'd like to have something a little more robust.