From 57ff89be64c029c904dd7071f28ec942574722ac Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Fri, 26 Nov 2021 20:34:10 +0100 Subject: [PATCH] Remove outdated heroku manifest --- README.md | 3 --- app.json | 59 ------------------------------------------------------- 2 files changed, 62 deletions(-) delete mode 100644 app.json diff --git a/README.md b/README.md index 720b85d71..ae9df7810 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,6 @@ [![Donate](https://img.shields.io/badge/Donate-Patreon-orange.svg?colorB=F96854)](https://www.patreon.com/postgrest) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/postgrest) - - Deploy - [![Join the chat at https://gitter.im/begriffs/postgrest](https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](https://gitter.im/begriffs/postgrest) [![Docs](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](http://postgrest.org) [![Docker Stars](https://img.shields.io/docker/pulls/postgrest/postgrest.svg)](https://hub.docker.com/r/postgrest/postgrest/) diff --git a/app.json b/app.json deleted file mode 100644 index 24dc34499..000000000 --- a/app.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "PostgREST", - "description": "RESTful API for any PostgreSQL database.", - "logo": "https://avatars2.githubusercontent.com/u/15115011", - "repository": "https://github.com/PostgREST/postgrest", - "env": { - "BUILDPACK_URL": { - "description": "Heroku buildpack for deploying Haskell applications", - "value": "https://github.com/PostgREST/postgrest-heroku" - }, - "POSTGREST_VER": { - "description": "Version of PostgREST to deploy", - "value": "8.0.0" - }, - "DB_URI": { - "description": "Database connection string, e.g. postgres://user:pass@xxxxxxx.rds.amazonaws.com/mydb", - "required": true - }, - "DB_SCHEMA": { - "description": "The database schema to expose to REST clients. Tables, views and stored procedures in this schema will get API endpoints", - "required": true, - "value": "public" - }, - "DB_ANON_ROLE": { - "description": "The database role to use when executing commands on behalf of unauthenticated clients", - "required": true - }, - "DB_POOL": { - "description": "Number of connections to keep open in PostgREST’s database pool", - "required": false, - "value": "10" - }, - "SERVER_PROXY_URI": { - "description": "Overrides the base URL used within the OpenAPI self-documentation hosted at the API root path", - "required": false - }, - "JWT_SECRET": { - "description": "The secret used to decode JWT tokens clients provide for authentication", - "required": false - }, - "SECRET_IS_BASE64": { - "description": "When this is set to true, the value derived from jwt-secret will be treated as a base64 encoded secret", - "required": false, - "value": "false" - }, - "JWT_AUD": { - "description": "The audience that should be validated if the JWT token contains an aud claim", - "required": false - }, - "MAX_ROWS": { - "description": "A hard limit to the number of rows PostgREST will fetch from a view, table, or stored procedure", - "required": false - }, - "PRE_REQUEST": { - "description": "A schema-qualified stored procedure name to call right after switching roles for a client request", - "required": false - } - } -}