postgrest-docs
postgrest-docs copied to clipboard
This repo is archived and will be merged into postgrest/postgrest soon.
Hi, in postgrest github readme you state: *Being stateless to allow horizontal scaling*. If there were a need to scale, what would be the differences comparing it with traditional haskell...
This would make exploring pgrst features easier. Instead of creating a new db, the references examples could be changed to be based off our [fixtures schema](https://github.com/PostgREST/postgrest/blob/master/test/fixtures/schema.sql).
The authentication defaults to the anon role, eg if the JWT fails to auth. The result returned from the proxy is far to verbose > {"hint":null,"details":null,"code":"22023","message":"role \"DB_ANON_ROLE_NOT_ALLOWED\" does not exist"}
Clarify http://postgrest.org/en/v7.0.0/how-tos/providing-images-for-img.html. Some feedback on https://gitter.im/begriffs/postgrest?at=5eccf5282c49c45f5aa197b4. Not clear that nginx sets the correct headers. Also maybe add a note with a link to https://wiki.postgresql.org/wiki/BinaryFilesInDB. And mention CDN as an alternative...
Include https://github.com/monacoremo/postgrest-sessions-example in the docs. Linked issue: https://github.com/monacoremo/postgrest-sessions-example/issues/19.
We get this problem reported from time to time https://gitter.im/begriffs/postgrest?at=5e4f5e0c4880f07ed1eb66ac. It's easy to get the wrong port on postgrest.conf. To solve this, I think we should put a note on...
[Tutorial 0](http://postgrest.org/en/v6.0/tutorials/tut0.html#step-4-create-database-for-api) and [tutorial 1](http://postgrest.org/en/v6.0/tutorials/tut1.html#step-1-add-a-trusted-user) make use of `serial` and `grant usage on sequence`. We should update this to identity columns since users keep hitting on this issue: https://github.com/PostgREST/postgrest/issues/251. This...
I know little about docker and postgresql, So I got stuck a day when I follewed the auth doc to install pgjwt extension in docker. Here is my example code,...
The issue: As stated several places in the docs, you can return a full object from a POST. But this is especially difficult in regards to the "Multiple Tables Insertion...
The [Guide](http://postgrest.org/en/v6.0/) says nothing about multiple databases (multiple instances of PostgREST). A typical implementation is one instance for *production* and another for *testing*. PS: for some purposes, it is indifferent...