Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared-Lotti committed Mar 14, 2019
1 parent b568ad5 commit 98e7b60
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions readme.md
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

0 comments on commit 98e7b60

Please sign in to comment.