{"id":14563540,"url":"https://github.com/fluent-ci-templates/fly-pipeline","last_synced_at":"2026-02-09T02:03:45.989Z","repository":{"id":187150655,"uuid":"672333629","full_name":"fluent-ci-templates/fly-pipeline","owner":"fluent-ci-templates","description":"A ready-to-use CI/CD Pipeline for deploying your applications to fly.io","archived":false,"fork":false,"pushed_at":"2024-08-19T18:35:01.000Z","size":146,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-13T04:40:28.187Z","etag":null,"topics":["cicd","dagger","deno","flyio","pipeline","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-07-29T18:02:41.000Z","updated_at":"2024-09-02T01:03:41.000Z","dependencies_parsed_at":"2025-04-14T17:06:47.258Z","dependency_job_id":"848785ea-851b-4b4b-ac0c-97078bbf6191","html_url":"https://github.com/fluent-ci-templates/fly-pipeline","commit_stats":null,"previous_names":["fluent-ci-templates/fly-pipeline"],"tags_count":17,"template":true,"template_full_name":null,"purl":"pkg:github/fluent-ci-templates/fly-pipeline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Ffly-pipeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Ffly-pipeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Ffly-pipeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Ffly-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/fly-pipeline/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Ffly-pipeline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29254304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T01:52:29.835Z","status":"online","status_checked_at":"2026-02-09T02:00:09.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","dagger","deno","flyio","pipeline","typescript"],"created_at":"2024-09-07T02:02:18.823Z","updated_at":"2026-02-09T02:03:45.959Z","avatar_url":"https://github.com/fluent-ci-templates.png","language":"TypeScript","funding_links":[],"categories":["TypeScript","typescript"],"sub_categories":[],"readme":"# Fly Pipeline\n\n[![fluentci pipeline](https://shield.fluentci.io/x/fly_pipeline)](https://pkg.fluentci.io/fly_pipeline)\n[![deno module](https://shield.deno.dev/x/fly_pipeline)](https://deno.land/x/fly_pipeline)\n![deno compatibility](https://shield.deno.dev/deno/^1.42)\n[![dagger-min-version](https://shield.fluentci.io/dagger/v0.11.7)](https://dagger.io)\n[![](https://jsr.io/badges/@fluentci/fly)](https://jsr.io/@fluentci/fly)\n[![](https://img.shields.io/codecov/c/gh/fluent-ci-templates/fly-pipeline)](https://codecov.io/gh/fluent-ci-templates/fly-pipeline)\n[![ci](https://github.com/fluent-ci-templates/fly-pipeline/actions/workflows/ci.yml/badge.svg)](https://github.com/fluent-ci-templates/fly-pipeline/actions/workflows/ci.yml)\n\nA ready-to-use CI/CD Pipeline for deploying your applications to [Fly.io](https://fly.io).\n\n## 🚀 Usage\n\nRun the following command in your project:\n\n```bash\nfluentci run fly_pipeline\n```\n\nOr, if you want to use it as a template:\n\n```bash\nfluentci init -t fly\n```\n\nThis will create a `.fluentci` folder in your project.\n\nNow you can run the pipeline with:\n\n```bash\nfluentci run .\n```\n\n## 🧩 Dagger Module\n\nUse as a [Dagger](https://dagger.io) Module:\n\n```bash\ndagger install github.com/fluent-ci-templates/fly-pipeline@main\n```\n\nCall a function from the module:\n\n```bash\ndagger call deploy --src . --token env:FLY_API_TOKEN\n```\n\n## 🛠️ Environment Variables\n\n| Variable      | Description         |\n|---------------|---------------------|\n| FLY_API_TOKEN | Your Fly API token. |\n\n## ✨ Jobs\n\n| Job     | Description                      |\n|---------|----------------------------------|\n| deploy  | Deploys your application to Fly. |\n\n```typescript\ndeploy(\n  src: Directory | string,\n  token: Secret | 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/fly\";\n\nawait deploy(\".\", Deno.env.get(\"FLY_API_TOKEN\")!);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-ci-templates%2Ffly-pipeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluent-ci-templates%2Ffly-pipeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-ci-templates%2Ffly-pipeline/lists"}