https://github.com/vito/pipe2proj
converts a concourse pipeline into a concourse project
https://github.com/vito/pipe2proj
Last synced: 9 days ago
JSON representation
converts a concourse pipeline into a concourse project
- Host: GitHub
- URL: https://github.com/vito/pipe2proj
- Owner: vito
- License: apache-2.0
- Created: 2019-07-03T19:35:48.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-10T15:53:41.000Z (about 7 years ago)
- Last Synced: 2025-10-25T22:48:57.287Z (9 months ago)
- Language: Go
- Size: 34.2 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# pipe2proj
A tool for converting a pipeline into a project. Extracts tasks, resources, and
resource types into separate config files and pretty-prints them along the way.
Can be run multiple times against the same project. It will error if there are
any conflicts for any of the extracted tasks/resources/etc.
## building
This project uses a few templates under `tmpl/` for rendering pretty-printed
config files. Use `packr build` to bake them into the binary:
```sh
$ go install github.com/gobuffalo/packr/v2/packr2
$ packr2 install
```
After this you should be able to run `pipe2proj` from any directory (assuming
your `$GOPATH/bin` is on your `$PATH`).