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
.md
file(s) in thedocs
folder. - Update the
nav
section ofmkdocs.yaml
to 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:main
andcompare:$BRANCH_NAME
, then clickCreate pull request
. - After all checks have passed, click
Merge
thenDelete branch
. - Optional: After PR is closed, you can clear you local changes:
git checkout main git pull git branch -d $BRANCH_NAME