{"id":13879520,"url":"https://github.com/boltops-tools/pipedream","last_synced_at":"2025-04-19T13:16:58.303Z","repository":{"id":45107570,"uuid":"192576231","full_name":"boltops-tools/pipedream","owner":"boltops-tools","description":"Beautiful and Powerful DSL Tool to Easily Create AWS CodePipeline Pipelines Quickly","archived":false,"fork":false,"pushed_at":"2024-01-10T12:12:26.000Z","size":1677,"stargazers_count":14,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-05-01T11:29:03.485Z","etag":null,"topics":["aws","codepipeline","ruby"],"latest_commit_sha":null,"homepage":"https://pipedream.run","language":"Ruby","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/boltops-tools.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"docs/support.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"boltops-tools"}},"created_at":"2019-06-18T16:27:45.000Z","updated_at":"2024-06-02T20:37:57.467Z","dependencies_parsed_at":"2024-06-02T20:37:35.983Z","dependency_job_id":"a927e37a-8baa-477e-9690-60ac70248b06","html_url":"https://github.com/boltops-tools/pipedream","commit_stats":null,"previous_names":["tongueroo/codepipeline","tongueroo/pipedream"],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boltops-tools%2Fpipedream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boltops-tools%2Fpipedream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boltops-tools%2Fpipedream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boltops-tools%2Fpipedream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boltops-tools","download_url":"https://codeload.github.com/boltops-tools/pipedream/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249702298,"owners_count":21312761,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["aws","codepipeline","ruby"],"created_at":"2024-08-06T08:02:23.687Z","updated_at":"2025-04-19T13:16:58.265Z","avatar_url":"https://github.com/boltops-tools.png","language":"Ruby","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"http://pipedream.run\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/tongueroo/pipedream/master/docs/img/logos/pipedream-with-text.png\" /\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n# Pipe Dream\n\n![Build Status](https://codebuild.us-west-2.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiWk1FM0dldzE5MUM5R3VqVGxxTmRFb1JGNnkxQjJpTDYvajYrQk91YzErNjdNc1VYVElHM3V5ZEJXcStyMmZVc210WG8vUURSV2JST0ZpSWc5Y0pYR3k0PSIsIml2UGFyYW1ldGVyU3BlYyI6IldvYXhLMU8yS2pQdVRKbEoiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D\u0026branch=master)\n[![Gem Version](https://badge.fury.io/rb/pipedream.png)](http://badge.fury.io/rb/pipedream)\n\n[![BoltOps Badge](https://img.boltops.com/boltops/badges/boltops-badge.png)](https://www.boltops.com)\n\nPipe Dream provides a DSL to make it easy create a CodePipeline pipeline.\n\nPipe Dream installs `pipedream` and `pipe` executables. Both of them do the same thing, `pipe` is just shorter to type.\n\nThe documentation site is at: [pipedream.run](https://pipedream.run/)\n\n## Quick Start\n\n    pipe init\n    pipe deploy\n    pipe start\n    pipe delete\n\n## Init and Structure\n\nFirst, run `pipe init` to generate a starter `.pipedream` folder structure.\n\n    $ tree .pipedream\n    .pipedream\n    ├── pipeline.rb\n    └── schedule.rb\n\nFile | Description\n--- | ---\npipeline.rb | The CodePipeline pipeline written as a DSL.  This is required. Here are the [Pipeline DSL docs](https://pipedream.run/docs/dsl/pipeline/)\nschedule.rb | A CloudWatch scheduled event written as a DSL. Here are the [Schedule DSL docs](https://pipedream.run/docs/dsl/schedule/)\n\n## DSL\n\n.pipedream/pipeline.rb:\n\n```ruby\nstage \"Source\" do\n  github(\n    source: \"tongueroo/demo-ufo\",\n    auth_token: ssm(\"/github/user/token\")\n  )\nend\nstage \"DeployStacks\" do\n  codebuild \"demo1\"           # action declaration\n  codebuild \"demo2\", \"demo3\"  # will run in parallel\n  codebuild \"demo4\"           # action declaration\nend\n```\n\nMore [DSL docs](https://pipedream.run/docs/dsl/)\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n    gem \"pipedream\"\n\nAnd then execute:\n\n    bundle\n\nOr install it yourself as:\n\n    gem install pipedream\n\n## Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am \"Add some feature\"`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n","funding_links":["https://github.com/sponsors/boltops-tools"],"categories":["Ruby"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboltops-tools%2Fpipedream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboltops-tools%2Fpipedream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboltops-tools%2Fpipedream/lists"}