Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/Qarik-Group/concourse-tutorial

Learn to use https://concourse-ci.org with this linear sequence of tutorials. Learn each concept that builds on the previous concept.
https://github.com/Qarik-Group/concourse-tutorial

Last synced: 3 months ago
JSON representation

Learn to use https://concourse-ci.org with this linear sequence of tutorials. Learn each concept that builds on the previous concept.

Lists

README

        

# Concourse Tutorial

Learn to use https://concourse-ci.org with this linear sequence of tutorials. Learn each concept that builds on the previous concept.

Read the tutorial at https://concoursetutorial.com

## Thanks

Thanks to Alex Suraci for inventing Concourse CI, and to Pivotal and VMWare for sponsoring him and a team of developers to work since 2014.

At Stark & Wayne we started this tutorial as we were learning Concourse in early 2015, and we've been using Concourse in production since mid-2015 internally and at nearly all client projects.

Thanks to everyone who has worked through this tutorial and found it useful. I love learning that you're enjoying the tutorial and enjoying Concourse.

Thanks for all the pull requests to help fix regressions with some Concourse versions that came out with "backwards incompatible change".

## Getting Started

Read the tutorial at https://concoursetutorial.com

## Local development of tutorial

This tutorial is built using [`mkdocs`](http://www.mkdocs.org/). Please make sure you have python3 and pip3 installed before running mkdocs and they are refenced as python and pip respectively. . Once installed, you can continuously build and serve the tutorial locally with:

```plain
pip install mkdocs
pip install pymdown-extensions
pip install mkdocs-material

mkdocs serve
```

## Manual deployment

```
mkdocs build
cd site
gsutil -m cp -r . gs://concoursetutorial-com-website
gsutil -m rsync -r -x '\.git.*' . gs://concoursetutorial-com-website

```

View the site and live changes at https://localhost:8000.