Production is on main
: https://docs.conduktor.io.
We're now using Mintlify! npm i -g mint
or npx mint dev
if you don't want to install the CLI globally.
Here's more about the Mintlify installation.
In most cases, you'll be editing Markdown files in the guide directory.
For a local preview (on localhost:3000), run mint dev
.
You can check for broken links with mint broken-links
.
Check out Conduktor terminology, writing and ToV guidelines.
When creating a new page, use this layout:
- Overview. Introduce the concept and highlight main benefits.
- Prerequisites. List things that have to be done/set up before using.
- Use {feature}. Be clear, succinct and use task-oriented headings.
- Configure {feature}. List available customization options.
- Troubleshoot. Add a question/answer list of potential issues/solutions related to {feature}.
- Related resources. Include links to topics related to the feature. Add this link at the end:
When adding a tutorial (step-by-step guide), use this layout:
- Overview/goal. Introduce the concept and the purpose/goal.
- Context or requirements. Set the scene/list pre-requisites.
- List numbered steps. Use action-oriented headings.
- Expected results. Summarize the outcome(s), if it's more complex than something was 'successfully created/added'.
- Related tutorials. Anything else they could learn that's relevant.
- Related resources. Include links to topics related to the feature. Add these two links at the end:
All images are stored in /images
. Embed all images like this:

Note that all images will have a defined styling applied but you can override this when required.
Use absolute links when linking to Conduktor docs, e.g. /guide/get-started/hardware/.
You can also link to a specific section on a page, e.g. /guide/get-started/hardware/#hardware-requirements.
Every new version of Gateway, Console and CLI has to have release notes.
To update release notes:
-
Go to /snippets/changelog.
-
Create a new .mdx file or copy an existing one and rename it. The name has to be in this format:
<productName>-<versionNumber>.mdx
. -
Make sure your file has the following header:
--- title: Product version --- # Product version
-
Document the changes and fixes for the release. If it's a:
- major release with lots of changes, consider adding a table of contents at the top to make it easier to read.
- release containing breaking changes: add a meaningful title and explain why the change was made. Most importantly, explain how to know (or check) whether you're impacted, as a customer. Remember to explain what to change or do next, if anything.
- Go to guide/release-notes and open index.mdx. Add to the import list a line like this:
import Console1310 from './changelog/Console-1.31.0.mdx';
- Add an entry under the
<Note>
, linking to your file. E.g.:
<Update label="Console 1.36.1" description="2025-07-21">
<Console1361 />
</Update>
---
This is the format that Mintlify uses: label
is the H1 heading used in your .mdx file and description
is the date of the release.