Welcome to the Cognition & Brain Dynamics docs
Internal documentation.
Work in construction: check out the computational tips and BIDS guidelines. More to come!
Usage (only 2 lines of code!)
To work locally on this documentation:
Option 1: only requires uv
Convenient if you don't need tunneling.
uv sync
uv run mkdocs serve
Option 2: requires uv, node.js and npm install
uv sync
# this build the side into the export directory
uv run mkdocs build -d export
npx http-server export/ -p 3000
To share it over HTTP tunnels
ngrok http 3000