- MDX 48.4%
- JavaScript 19.8%
- Dockerfile 11.2%
- TypeScript 10.1%
- Go Template 9.6%
- Other 0.9%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
Weekly Renovate updates 2 june See merge request osr-wm/development/enabling/flow/flow-docs!3 |
||
| chart | ||
| src | ||
| .dockerignore | ||
| .gitignore | ||
| .gitlab-ci.yml | ||
| .trivyignore | ||
| astro.config.mjs | ||
| Dockerfile | ||
| package.json | ||
| README.md | ||
| renovate.json | ||
| tsconfig.json | ||
FLOW: Platform Documentation
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 Starlight’s docs and read the Astro documentation.