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.
- Host: GitHub
- URL: https://github.com/Qarik-Group/concourse-tutorial
- Owner: Qarik-Group
- Created: 2015-04-04T15:21:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-17T20:04:56.000Z (12 months ago)
- Last Synced: 2024-04-10T00:49:54.808Z (7 months ago)
- Language: Shell
- Homepage:
- Size: 11 MB
- Stars: 864
- Watchers: 57
- Forks: 556
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
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-materialmkdocs 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.