- Conduktor technical docs
- Deployment and structure
- Docs best practice
- Update release notes
- Update public API docs
Production is on main
: https://docs.conduktor.io.
In most cases, you'll be editing Markdown files in the docs directory, for either Console (docs/platform) or Gateway (docs/gateway).
For a local preview (on localhost:3000), run yarn start
.
If you're editing many files or making significant changes, run yarn build
to check for any failures before merging:
$ yarn
$ yarn build
$ yarn start
We're using Vercel for hosting and the build will try to deploy to this platform.
Add images to the assets folder under the same directory as the Markdown file you're editing. Use 
.
All images will be auto-sized to fit the width of the content pane.
To resize an image:
import MyImage from './assets/my-image.png';
<img src={MyImage} alt="My Image" style={{ width: 400, display: 'block', margin: 'auto' }} />
Use absolute links when linking to Conduktor docs, e.g. hardware specs.
You can also link to specific sections on the page, e.g. export properties.
You can break-up long paragraphs by using tabs, like this.
To add tabs:
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
<Tabs>
<TabItem value="First Tab" label="First Tab">
My first tab content:
```yaml title="first-tab.yaml"
myFirstTab: "content"
```
</TabItem>
<TabItem value="Second Tab" label="Second Tab">
My second tab content:
```yaml title="second-tab.yaml"
mySecondTab: "content"
```
</TabItem>
</Tabs>
You can use tags to visualize available options, like this.
To add tags:
import Admonition from '@theme/Admonition';
export const Highlight = ({children, color, text}) => (
<span style={{ backgroundColor: color, borderRadius: '4px', color: text, padding: '0.2rem 0.5rem', fontWeight: '500' }}> {children} </span>
);
export const Tag1 = () => (
<Highlight color="#F8F1EE" text="#7D5E54">Tag 1</Highlight>
);
<Tag1/>
Every new version of Gateway and Console has to have release notes.
To update release notes:
- Go to src/pages/changelog.
- Create a new file or copy an existing one and rename it. The name has to be in this format:
<productName>-<versionNumber>.md
. - Make sure your file has the following header:
---
date: 2025-11-25
title: Chargeback
description: docker pull conduktor/conduktor-console:1.31.0
solutions: console
tags: features,fix
---
*Release date: {frontMatter.date.toISOString().slice(0, 10)}*
- Document all the changes in the release. If it's a major release, consider adding an index/table of contents to make it easier to read.
- Open
src/pages/changelog.mdx
and import your new file, e.g.:
import Console1310 from './changelog/Console-1.31.0.md';
- Finally, add an entry at the top of the page, linking to your file. E.g.:
## Console 1.131.0
<Console1310 />
---
API docs live on host:8888 of the deployed Gateway/Console and are also published to: Gateway API docs and Console API docs.
To update the public docs:
- Copy the latest open API yaml files from the
conduktor-proxy
repo based on the version:
- Paste the yaml files to /static/developers and rename as required.
- Add the new version to
static/developers/openapi/manifest.json
.