Quick Start (v1)

1. Create a docs folder

Terminal window
mkdir my-docs
cd my-docs

2. Add a config file

Create docs-config.json:

{
"metadata": {
"name": "My Docs",
"description": "My documentation site"
}
}

3. Add your first page

Create introduction.md:

# Welcome
This is my documentation site built with Lito.

4. Start the dev server

Terminal window
lito dev -i ./my-docs

Open http://localhost:4321 to see your docs.