-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jared-Lotti
committed
Mar 14, 2019
1 parent
b568ad5
commit 98e7b60
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
## Node Project Generator | ||
[![Build Status](https://travis-ci.org/Jarlotee/generator-concourse-pipeline.svg?branch=master)](https://travis-ci.org/Jarlotee/generator-concourse-pipeline) | ||
![Dependency Status](https://david-dm.org/Jarlotee/generator-concourse-pipeline.svg) | ||
|
||
Helps you bootstrap your respository for concourse ci. | ||
|
||
### Supported Deployment Types | ||
|
||
Azure PAAS | ||
* dotnet web | ||
* node web | ||
|
||
### Getting Started | ||
|
||
* Install `npm install -g generator-concourse-pipeline` | ||
* Run `yo concourse-pipeline` | ||
|
||
### Options | ||
```bash | ||
Deploying code for the first time? Answer a few questions to get started... | ||
What is the name of your pipeline? test-app | ||
Where is your source code? https://github.com/MyOrg/test-app.git | ||
Do you want to use github flow versioning? Yes | ||
Do you want to build pull requests? Yes | ||
What kind of project would you like to create? dotnet-paas | ||
|
||
Next Steps: | ||
* update .ci/config based on your paas resource setup | ||
* update your readme.md with pipeline information | ||
|
||
## Update Deployment Pipeline | ||
1) Make modifications to .ci/deployment.yaml | ||
2) `fly -t [team-name] set-pipeline -p test-app -c .ci/pipeline.yaml` | ||
3) Commit and Push your changes to github | ||
``` | ||
|
||
### What you get | ||
|
||
```bash | ||
└── .ci | ||
├── config | ||
│ ├── dev.json | ||
│ ├── prod.json | ||
│ └── qa.json | ||
├── pipeline.yaml | ||
└── scripts | ||
├── deploy.sh | ||
├── generate_version.sh | ||
└── publish.sh | ||
``` | ||
|
||
## License | ||
MIT |