From e14b88702e22045aff437c5136924c6074a92721 Mon Sep 17 00:00:00 2001 From: michaelcurrin Date: Tue, 19 May 2020 13:46:47 +0200 Subject: [PATCH] Update tldr.md --- docs/tutorial/tldr.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/tldr.md b/docs/tutorial/tldr.md index 26aaf23..a0e83e2 100644 --- a/docs/tutorial/tldr.md +++ b/docs/tutorial/tldr.md @@ -1,8 +1,14 @@ ## TL;DR > A simplified version of the tutorial. +### Local setup and deploy + 1. `pip install mkdocs` -2. `mkdocs new .` or click _Use this Template_ +2. `mkdocs new .` or click _Use this Template_ for this project. 3. `mkdocs serve` 4. `mkdocs gh-deploy` -5. View published site at [https://USERNAME.github.io/REPO-NAME/]() +5. View published site on Github Pages at [https://USERNAME.github.io/REPO-NAME/]() + +### Remote deploy + +For CI/CD deploy, use Github Actions with an action such as [Deploy MkDocs](https://github.com/marketplace/actions/deploy-mkdocs). This is not covered in this tutorial.