This is the website and user documentation for the Kinetra project.
Look no further! Just edit the files in the content/docs directory and submit a pull request.
The docs are written in GitHub Flavored Markdown (GFM) and processed by Fumadocs. You can find more information about writing GFM style Markdown in the Fumadocs documentation.
Important: Please use custom anchors for headings to guarantee links stay stable in the future.
Additionally, if you want your documentation to be extra fancy, you can use Fumadocs components.
We also added custom components for advanced use cases:
# Just write Mermaid code between the ```mermaid tags.
```mermaid
graph TD
A[Start] --> B[Stop]
```Install mise:
# macOS and linux
curl https://mise.run | shEnable mise in your shell, then restart your shell:
# zsh
echo 'eval "$(mise activate zsh)"' >> ~/.zshrc
# bash
echo 'eval "$(mise activate bash)"' >> ~/.bashrcTrust this project's mise.toml and install the configured tools:
mise trust
mise installInstall dependencies with the Bun version managed by mise:
bun installStart the development server:
bun devOther useful commands:
bun run lint
bun run format
bun run build