X Tutup
Skip to content

Latest commit

 

History

History

README.md

CogStack Documentation

The central documentation for cogstack, hosted on docs.cogstack.org

Setup

Prerequisites

  • Python 3.10 or higher
  • uv package manager

Installation

uv venv --python 3.12 --allow-existing 
source .venv/bin/activate
uv sync --dev

Usage

Serve documentation locally (Development)

To preview the documentation locally with live reload:

uv run mkdocs serve

The documentation will be available at http://127.0.0.1:8000

Build documentation

To build the static site:

uv run mkdocs build

The built site will be in the site/ directory.

X Tutup