Files
mkdocs-quickstart/docs/tutorial/usage.md
Michael Currin 49d6ee84a7 docs: Update docs
2020-10-17 16:54:30 +02:00

506 B

Usage

Build and preview a site locally

Serve docs

This will build the docs in memory (not to disk) and serve an auto-reloading server.

$ make s

That will use Makefile to run the following:

$ mkdocs serve --strict

Then open in your browser:

Build docs

Build docs site to site directory. This is useful for a CI flow.

$ make b

That will use Makefile to run the following:

$ mkdocs build --strict