Look similar to postgrest, but younger project under (L)GPL license. https://github.com/PostgREST/postgrest http://postgrest.org/en/v6.0/
It's awesome for hobby projects, but I wasn't able to figure out how to use it to build a SaaS app.
11–18 of 18 posts
Look similar to postgrest, but younger project under (L)GPL license. https://github.com/PostgREST/postgrest http://postgrest.org/en/v6.0/
It's awesome for hobby projects, but I wasn't able to figure out how to use it to build a SaaS app.
Why not just set up a SPARQL endpoint, which seems to be the recommended standard for accessing data over Web platforms?
Look similar to postgrest, but younger project under (L)GPL license. https://github.com/PostgREST/postgrest http://postgrest.org/en/v6.0/
These tools like Postgrest are super fun but in the end, I always end up needing an API for secure business logic. At that point, these tools where "your DB is your API" just become another part of your backend rather than replacing the backend, and the value of that isn't clear to me. It's awesome for hobby projects, but I wasn't able to figure out how to use it to build a SaaS app.
What problem is this trying to solve?
I've written a dozen internal dashboards where something like this would have been useful. Rather than writing server side code to craft queries and return results, you can add arbitrary queries easily to the front end. Just use a read-only DB account and you are golden. Is it the right way to do it? No. Is it something you can stand up in a few hours so you can work on the things that keep your startup afloat instea…
Look similar to postgrest, but younger project under (L)GPL license. https://github.com/PostgREST/postgrest http://postgrest.org/en/v6.0/
These tools like Postgrest are super fun but in the end, I always end up needing an API for secure business logic. At that point, these tools where "your DB is your API" just become another part of your backend rather than replacing the backend, and the value of that isn't clear to me. It's awesome for hobby projects, but I wasn't able to figure out how to use it to build a SaaS app.
Earlier quoted context omitted.
I've written a dozen internal dashboards where something like this would have been useful. Rather than writing server side code to craft queries and return results, you can add arbitrary queries easily to the front end. Just use a read-only DB account and you are golden. Is it the right way to do it? No. Is it something you can stand up in a few hours so you can work on the things that keep your startup afloat instea…
This sort of tool would be nice for PoC - but if you're using it for production anything and have any customer information (or really, any information of value) saved in that database... it would be terrible - even off an R/O connection.
What problem is this trying to solve?