FLOW documentation
  • MDX 48.4%
  • JavaScript 19.8%
  • Dockerfile 11.2%
  • TypeScript 10.1%
  • Go Template 9.6%
  • Other 0.9%
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Loon, Nicky van (RWS CIV) a62845d69d Merge branch 'renovate/astro-monorepo' into 'main'
Weekly Renovate updates 2 june

See merge request osr-wm/development/enabling/flow/flow-docs!3
2026-06-02 07:36:29 +02:00
chart Weekly Renovate updates 2 june 2026-06-02 07:36:29 +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 Weekly Renovate updates 26 may 2026-05-26 14:48:21 +02:00
.trivyignore Tested locally 2026-05-21 08:18:07 +02:00
astro.config.mjs Tested locally 2026-05-21 08:18:07 +02:00
Dockerfile Weekly Renovate updates 2 june 2026-06-02 07:36:29 +02:00
package.json Weekly Renovate updates 2 june 2026-06-02 07:36:29 +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.