Getting Started
Welcome to ChipaDocs, the documentation hub for Chipa Trade.
This site is built with Zola, a fast static site
generator written in Rust. Content lives under content/ as Markdown files
and is compiled to static HTML on every deploy — there’s no database and no
runtime to manage beyond the web server.
Adding a page
-
Create a new Markdown file under
content/docs/, e.g.content/docs/my-page.md. -
Add front matter with a
titleand aweight(controls sidebar order):+++ title = "My Page" weight = 3 +++ -
Write the page content below the front matter in Markdown.
-
Commit and push — the deployed build service picks up the change and rebuilds automatically.
Local preview
zola serve
Then open http://127.0.0.1:1111 in your browser. Zola live-reloads as you edit.