### Run Jekyll via Docker Source: https://github.com/adr/adr.github.io/blob/main/README.md Starts a Jekyll development server using Docker, mapping ports and volumes. ```bash docker run --rm -it -p 4000:4000 -v "C:\git-repositories\adr.github.io\adr.github.io:/tmp/adr" mcr.microsoft.com/devcontainers/jekyll:2-bullseye /bin/bash ``` -------------------------------- ### Install Jekyll Dependencies Source: https://github.com/adr/adr.github.io/blob/main/README.md Installs Bundler and then installs the project's Ruby dependencies for Jekyll. ```bash gem install bundler && bundle install ``` -------------------------------- ### Serve Jekyll Site Source: https://github.com/adr/adr.github.io/blob/main/README.md Builds and serves the Jekyll site locally with live reload enabled. ```bash bundle exec jekyll serve -H 0.0.0.0 -t ``` -------------------------------- ### Fetch Chirpy Theme Changes Source: https://github.com/adr/adr.github.io/blob/main/README.md Fetches the latest changes from the Chirpy starter theme remote. ```bash get fetch chirpy-starter ``` -------------------------------- ### Initialize and Update Git Submodules Source: https://github.com/adr/adr.github.io/blob/main/README.md Initializes and updates Git submodules, typically used when assets are missing. ```bash git submodule init git submodule update ``` -------------------------------- ### Add Chirpy Theme Remote Source: https://github.com/adr/adr.github.io/blob/main/README.md Adds the Chirpy starter theme as a Git remote for updating. ```bash git remote add chirpy-starter git@github.com:cotes2020/chirpy-starter.git ``` -------------------------------- ### Merge Chirpy Theme Changes Source: https://github.com/adr/adr.github.io/blob/main/README.md Merges the fetched changes from the Chirpy starter theme into the current branch. ```bash git merge chirpy-starter/main ``` -------------------------------- ### ADR Template Class Diagram Source: https://github.com/adr/adr.github.io/blob/main/_posts/2024-10-25-adr-templates.md A UML class diagram illustrating various ADR templates like MADR, Nygard ADR, and Y-Statements, showing their inheritance from a base ADR class. ```mermaid classDiagram direction TB class ADR { <> } ADR <|-- MADR ADR <|-- NygardADR ADR <|-- Y-Statement ADR <|-- OtherADRTemplate ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.