{"id":20571361,"url":"https://github.com/fluent-ci-templates/supabase-pipeline","last_synced_at":"2026-03-01T10:34:40.443Z","repository":{"id":204335295,"uuid":"675678714","full_name":"fluent-ci-templates/supabase-pipeline","owner":"fluent-ci-templates","description":"A ready-to-use CI/CD Pipeline for deploying your code to Supabase Edge Functions.","archived":false,"fork":false,"pushed_at":"2024-06-18T20:38:25.000Z","size":145,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-09T19:45:51.118Z","etag":null,"topics":["cicd","deno","pipeline","supabase","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fluent-ci-templates.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-08-07T13:24:45.000Z","updated_at":"2024-06-18T20:38:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"690f4747-3953-41e7-b61c-f9d1074ff18d","html_url":"https://github.com/fluent-ci-templates/supabase-pipeline","commit_stats":null,"previous_names":["fluent-ci-templates/supabase-pipeline"],"tags_count":10,"template":true,"template_full_name":null,"purl":"pkg:github/fluent-ci-templates/supabase-pipeline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fsupabase-pipeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fsupabase-pipeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fsupabase-pipeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fsupabase-pipeline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluent-ci-templates","download_url":"https://codeload.github.com/fluent-ci-templates/supabase-pipeline/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Fsupabase-pipeline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29966857,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T09:33:09.965Z","status":"ssl_error","status_checked_at":"2026-03-01T09:25:48.915Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cicd","deno","pipeline","supabase","typescript"],"created_at":"2024-11-16T05:16:03.923Z","updated_at":"2026-03-01T10:34:40.427Z","avatar_url":"https://github.com/fluent-ci-templates.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Supabase Pipeline\n\n[![fluentci pipeline](https://shield.fluentci.io/x/supabase_pipeline)](https://pkg.fluentci.io/supabase_pipeline)\n![deno compatibility](https://shield.deno.dev/deno/^1.41)\n[![dagger-min-version](https://shield.fluentci.io/dagger/v0.11.7)](https://dagger.io)\n[![](https://jsr.io/badges/@fluentci/supabase)](https://jsr.io/@fluentci/supabase)\n[![](https://img.shields.io/codecov/c/gh/fluent-ci-templates/supabase-pipeline)](https://codecov.io/gh/fluent-ci-templates/supabase-pipeline)\n[![ci](https://github.com/fluent-ci-templates/supabase-pipeline/actions/workflows/ci.yml/badge.svg)](https://github.com/fluent-ci-templates/supabase-pipeline/actions/workflows/ci.yml)\n\nA ready-to-use CI/CD Pipeline for deploying your application to [Supabase Edge Functions](https://supabase.com/edge-functions).\n\n## 🚀 Usage\n\nRun the following command:\n\n```bash\nfluentci run supabase_pipeline\n```\n\n## 🧩 Dagger Module\n\nUse as a [Dagger](https://dagger.io) Module:\n\n```bash\ndagger install github.com/fluent-ci-templates/supabase-pipeline@main\n```\n\nCall a function from the module:\n\n```bash\ndagger -m github.com/fluent-ci-templates/supabase-pipeline@main call \\\n  deploy --src . \\\n  --token env:SUPABASE_ACCESS_TOKEN \\\n  --projectId $PROJECT_ID\n```\n\n## 🛠️ Environment Variables\n\n| Variable              | Description                   |\n|-----------------------|-------------------------------|\n| SUPABASE_ACCESS_TOKEN | Your Supabase Access Token    |\n| PROJECT_ID            | Your Supabase Project ID      |\n\n## ✨ Jobs\n\n| Job         | Description                                                |\n|-------------|------------------------------------------------------------|\n| deploy      | Deploy functions to Supabase Edge Functions                |\n\n```typescript\ndeploy(\n  src: Directory | string,\n  token: Secret | string,\n  projectId: string\n): Promise\u003cstring\u003e\n```\n\n## 👨‍💻 Programmatic usage\n\nYou can also use this pipeline programmatically:\n\n```typescript\nimport { deploy } from \"jsr:@fluentci/supabase\";\n\nawait deploy(\n    \".\", \n    Deno.env.get(\"SUPABASE_ACCESS_TOKEN\")!, \n    Deno.env.get(\"PROJECT_ID\")!\n);\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-ci-templates%2Fsupabase-pipeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluent-ci-templates%2Fsupabase-pipeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-ci-templates%2Fsupabase-pipeline/lists"}