FLOW documentation
  • MDX 35.4%
  • CSS 31.2%
  • Astro 22.2%
  • JavaScript 7.4%
  • Dockerfile 1.4%
  • Other 2.4%
Find a file
2026-09-01 14:13:36 +02:00
chart EN-5049/Extend flow.rws.nl 2026-09-01 14:13:36 +02:00
src EN-5049/Extend flow.rws.nl 2026-09-01 14:13:36 +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 Update dependency astro to v7.2.10 2026-09-01 07:46:10 +02:00
.trivyignore EN-5049/Extend flow.rws.nl 2026-09-01 14:13:36 +02:00
astro.config.mjs EN-5049/Extend flow.rws.nl 2026-09-01 14:13:36 +02:00
Dockerfile Update dependency astro to v7.2.10 2026-09-01 07:46:10 +02:00
package.json EN-5049/Extend flow.rws.nl 2026-09-01 14:13:36 +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.