This repository can be used as a starting point when developing chef cookbooks for camunda.
- Clone this repository
git clone git@github.com/camunda-ci/camunda-template-cookbook.git. - To clear the repository history, delete the
.gitfolder and immediately reinitialize the folder as a git repository usinggit init. - Add the remote origin of your new cookbook repository like
git remote add origin git@github.com:camunda-ci/camunda-whatever-cookbook.git. - Use a text editor or
sed / grepwhatever to replace the stringcamunda-templatewith your cookbook name eg.camunda-jenkinsinside all files. Sed examplegrep -lr --exclude-dir=".git" -e "camunda-template" . | xargs sed -i "s/camunda-template/camunda-jenkins/g". - Delete this
READMEand renameREADME.md.exampletoREADME.md. - Add all files using
git add .. Commit all filesgit commit -m "Initial commit". Push all files to origin likegit push -u origin master.
Have a look at the new README.md to get a description of what this cookbook template provides and how it is used.