FLOW documentation
  • MDX 47.3%
  • JavaScript 21.5%
  • Dockerfile 11%
  • TypeScript 9.9%
  • Go Template 9.4%
  • Other 0.9%
Find a file
2026-07-20 09:05:40 +02:00
chart Rename ingress and service 2026-07-20 09:05:40 +02:00
src Added rijksoverheid logo 2026-05-21 08:21:21 +02:00
.dockerignore Tested locally 2026-05-21 08:18:07 +02:00
.gitignore Tested locally 2026-05-21 08:18:07 +02:00
.gitlab-ci.yml Rename ingress and service 2026-07-20 09:05:40 +02:00
.trivyignore Update dependency astro to v7 2026-06-29 15:29:38 +02:00
astro.config.mjs Update dependency starlight-image-zoom to v0.15.0 2026-06-30 07:57:11 +02:00
Dockerfile Weekly Renovate updates 14 july 2026-07-14 12:37:09 +02:00
package.json Rename ingress and service 2026-07-20 09:05:40 +02:00
README.md Tested locally 2026-05-21 08:18:07 +02:00
renovate.json Configure Renovate 2026-05-26 09:19:33 +02:00
tsconfig.json Tested locally 2026-05-21 08:18:07 +02:00

FLOW: Platform Documentation

Built with Starlight

This repository contains the documentation for the FLOW platform. The documentation is written in Markdown(-ish) and rendered using Astro and Starlight.

🖋 How to Contribute

Everyone can contribute to the documentation of FLOW. Found a mistake? Want to add a new section? To contribute to the documentation, follow these steps:

  • Create a branch
  • Make your changes
  • Create a merge request
  • Get your changes reviewed
  • Get your changes merged

🚀 Project Structure

Astro + Starlight uses a file-based routing system. Here's an overview of the project structure:

.
├── 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.

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

Static assets, like favicons, can be 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 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

👀 Astro and Starlight Documentation

Check out Starlights docs and read the Astro documentation.