├── LICENSE ├── README.md └── bin ├── compile ├── detect └── release /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PostgREST/postgrest-heroku/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PostgREST/postgrest-heroku/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PostgREST/postgrest-heroku/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "PostgREST" && exit 0 4 | -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "--- {}" 4 | --------------------------------------------------------------------------------