Skip to content

kuzudb/kuzu-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3f49fc8 Β· Apr 28, 2025
Apr 15, 2025
Apr 27, 2025
Apr 2, 2025
Apr 28, 2025
Mar 31, 2024
Mar 5, 2024
Aug 6, 2024
Mar 31, 2024
Apr 15, 2025
Apr 21, 2025
Apr 8, 2025
Apr 7, 2025
Apr 15, 2025
Mar 31, 2024

Repository files navigation

Kuzu Documentation

Built with Starlight

This documentation site is built with Astro and Starlight. The sections below describe the site's structure and the commands for installation, local development and build instructions.

πŸš€ Project Structure

Inside of this Astro + Starlight project, there exist the following folders and files:

.
β”œβ”€β”€ public/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ assets/
β”‚   β”œβ”€β”€ content/
β”‚   β”‚   β”œβ”€β”€ docs/
β”‚   β”‚   └── config.ts
β”‚   └── env.d.ts
β”œβ”€β”€ astro.config.mjs
β”œβ”€β”€ package.json
└── tsconfig.json

Starlight looks for .md or .mdx files in the src/content/docs/ directory. Each file is exposed as a route based on its file name.

Note

MDX combines JSX and Markdown to make it easier to write component-driven content like tabbed code blocks. Starlight requires that you work with .mdx files instead of .md when using JSX components. See the official documentation for more information on MDX syntax and why it exists.

Images are added to src/assets/ and embedded in Markdown with a relative link.

Any additional static assets (like fonts, favicon, PDFs, etc.) that will not be processed by Astro are placed in the public/ directory.

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:4321
npm start Starts local server and builds site
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run astro ... Run CLI commands like astro add, astro check
npm run astro -- --help Get help using the Astro CLI
npm run check-links Check for broken links in the documentation

πŸ‘€ Learn more

Check out Starlight’s docs and read the Astro documentation for further customization of the site.

Deployment

A CI pipeline is configured to deploy the documentation to the server. The pipeline is triggered when a commit is pushed to the main branch. The CI pipeline will automatically build the documentation and deploy it to https://docs.kuzudb.com.