All delivery playbook content are located here.
All the content is written in markdown, here's a cheat sheet to help you navigate the syntax. Here are the steps to create new content:
When the pull request is merged, a process will be triggered that will push the new changes onto the site.
In order to modify existing content, click on the file you want to change and select the button with a pencil icon. You can make all the necessary edits and then follow the same process as the add new content section in order to create and merge a pull request.
Before you make a pull request and merge your changes, you may want to view the website with your changes on your local computer. If that's the case you'll need to do the following steps in your terminal:
Before you do any of the following steps, you need to connect your local computer to your Github account. Follow these instructions in order to get that done.
# Install MkDocs and MkDocs Material:
brew install python
python3 -m venv .env
source .env/bin/activate
pip install mkdocs mkdocs-material
# clone the repository
git clone https://github.com/rise8-us/delivery-playbooks.git
cd deliver-playbooks
# run dev server
mkdocs serve