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

  1. Create a new Markdown file under content/docs/, e.g. content/docs/my-page.md.

  2. Add front matter with a title and a weight (controls sidebar order):

    +++
    title = "My Page"
    weight = 3
    +++
  3. Write the page content below the front matter in Markdown.

  4. 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.