PostgREST - API the DB
-
-
Just packaged it for myself. In case anyone wants to do this:
Basically follow the packaging Tutorial: https://docs.cloudron.io/packaging/tutorial/
CloudronManifest.json
{ "title": "Postgrest", "version": "0.0.1", "healthCheckPath": "/", "httpPort": 3000, "manifestVersion": 2 }
install image directly from postgrest Docker Hub https://hub.docker.com/r/postgrest/postgrest
cloudron install --image postgrest/postgrest
And then configure by setting env vars on the app via Cloudron CLI
https://postgrest.org/en/stable/references/configuration.htmleg
cloudron env set --app YourAppName "PGRST_DB_URI=postgresql://user:pwd@host:port/db"
-
Just packaged it for myself. In case anyone wants to do this:
Basically follow the packaging Tutorial: https://docs.cloudron.io/packaging/tutorial/
CloudronManifest.json
{ "title": "Postgrest", "version": "0.0.1", "healthCheckPath": "/", "httpPort": 3000, "manifestVersion": 2 }
install image directly from postgrest Docker Hub https://hub.docker.com/r/postgrest/postgrest
cloudron install --image postgrest/postgrest
And then configure by setting env vars on the app via Cloudron CLI
https://postgrest.org/en/stable/references/configuration.htmleg
cloudron env set --app YourAppName "PGRST_DB_URI=postgresql://user:pwd@host:port/db"