├── .github └── workflows │ └── semgrep.yml ├── LICENSE ├── README.md ├── cloudflared └── .gitkeep ├── docker-compose.yml └── scripts └── create-example-data.sql /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/postgres-postgrest-cloudflared-example/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/postgres-postgrest-cloudflared-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/postgres-postgrest-cloudflared-example/HEAD/README.md -------------------------------------------------------------------------------- /cloudflared/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/postgres-postgrest-cloudflared-example/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /scripts/create-example-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/postgres-postgrest-cloudflared-example/HEAD/scripts/create-example-data.sql --------------------------------------------------------------------------------