├── .github └── workflows │ ├── ci.yaml │ ├── preview.yaml │ ├── production.yaml │ └── staging.yaml ├── LICENSE ├── README.md ├── supabase ├── .gitignore ├── config.toml ├── migrations │ └── 20220810154537_new_employee.sql ├── remotes │ ├── preview.tf │ ├── production.tf │ └── provider.tf └── tests │ └── employees.test.sql └── types.gen.ts /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/.github/workflows/preview.yaml -------------------------------------------------------------------------------- /.github/workflows/production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/.github/workflows/production.yaml -------------------------------------------------------------------------------- /.github/workflows/staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/.github/workflows/staging.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/README.md -------------------------------------------------------------------------------- /supabase/.gitignore: -------------------------------------------------------------------------------- 1 | # Terraform 2 | *_override.tf 3 | 4 | # Supabase 5 | .branches 6 | .temp 7 | -------------------------------------------------------------------------------- /supabase/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/supabase/config.toml -------------------------------------------------------------------------------- /supabase/migrations/20220810154537_new_employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/supabase/migrations/20220810154537_new_employee.sql -------------------------------------------------------------------------------- /supabase/remotes/preview.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/supabase/remotes/preview.tf -------------------------------------------------------------------------------- /supabase/remotes/production.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/supabase/remotes/production.tf -------------------------------------------------------------------------------- /supabase/remotes/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/supabase/remotes/provider.tf -------------------------------------------------------------------------------- /supabase/tests/employees.test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/supabase/tests/employees.test.sql -------------------------------------------------------------------------------- /types.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/supabase-action-example/HEAD/types.gen.ts --------------------------------------------------------------------------------