Static documentation site for Cloud Deisgn Patterns learning journey.
- Clone this repository:
git clone https://github.com/cloud-design-patterns-journey/docs cd docs - Create your own branch from
main:export BRANCH_NAME=<changeme> git checkout -b $BRANCH_NAME
- Add your doc(s) as
.mdfile(s) in thedocsfolder. - Update the
navsection ofmkdocs.yamlto reference your new docs. - Commit and push your changes:
git add mkdocs.yaml docs git commit -s -m '<CHANGEME>' git push -u origin $BRANCH_NAME
- Create a new pull request by selecting
base:mainandcompare:$BRANCH_NAME, then clickCreate pull request. - After all checks have passed, click
MergethenDelete branch. - Optional: After PR is closed, you can clear you local changes:
git checkout main git pull git branch -d $BRANCH_NAME