The official documentation for Keboola, available at help.keboola.com. Built with Astro Starlight.
Contributing with an AI agent? See AGENTS.md (and CLAUDE.md) for the full repo guide and the critical rules.
- Node.js 22 or later
Install dependencies and start the dev server:
npm install
npm run devDocumentation will be available at http://localhost:4321
The dev server supports hot reload — changes to content files are reflected immediately.
├── src/
│ ├── content/docs/ # All documentation pages (Markdown)
│ ├── assets/ # Site logo and other processed assets
│ ├── components/ # Custom Starlight component overrides
│ ├── integrations/ # Custom Astro integrations (redirect-from)
│ ├── styles/ # Custom CSS (Keboola brand overrides)
│ └── sidebar.mjs # Generated sidebar navigation config
├── public/ # Static assets (images, favicon) served as-is
├── scripts/
│ └── convert-nav.mjs # Sidebar generator from _data/navigation.yml
├── astro.config.mjs # Astro + Starlight configuration
└── package.json
Documentation pages are Markdown files in src/content/docs/ — edit them
directly. Each page needs frontmatter with at least a title and slug:
---
title: My Page Title
slug: 'section/my-page'
---Use fenced directives for tips, warnings, and notes:
:::tip
Helpful information here.
:::
:::caution
Important warning here.
:::
:::caution[Public Beta]
This feature is currently in public beta.
:::Place images alongside the Markdown files in src/content/docs/ and reference them with absolute paths:
Images are also available in public/ for absolute path serving. Click-to-zoom is enabled automatically on all images via the starlight-image-zoom plugin.
npm run buildOutput goes to dist/. This generates static HTML with:
- 274 documentation pages
- 162 redirect pages (from
redirect_fromfrontmatter) - Full-text search index (via Pagefind)
- Sitemap
If you modify _data/navigation.yml, regenerate the sidebar config:
npm run gen:sidebarThis updates src/sidebar.mjs.
Deployment is automated via GitHub Actions. Pushing to main triggers a build and deploy to the S3 bucket at help.keboola.com.
The CI workflow (.github/workflows/main.yml) runs:
npm ci— install dependenciesnpm run build— build the siteaws s3 sync— deploydist/to S3
- Full-text search — built-in Pagefind search, no external service required
- Dark/light mode — automatic theme switching
- Image zoom — click any image to view full-size
- Copy as Markdown — every page has a button to copy content as Markdown (useful for AI workflows)
- Redirects — old URLs are preserved via auto-generated redirect pages
- Table of contents — auto-generated on every page
MIT licensed, see LICENSE file.