Documentation Index
Fetch the complete documentation index at: https://openmetadata-feat-feat-2mbfixdeploy.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Update the Documentation
One important part of developing a new connector is to document how it works after it is done. The documentation for connectors can be found withinopenmetadata-docs/content/v{version}-SNAPSHOT/connectors
where {version} depends on the time of reading.
There you need to create a new folder within the proper Source Type you are building a connector for (Database, Dashboard, MLModel, etc) and create two files:
- index.mdx: It explains how to configure the connector using the UI.
- yaml.mdx: It explains how to configure the connector using a YAML file.
openmetadata-docs/content/v{version}-SNAPSHOT/menu.mdxopenmetadata-docs/content/v{version}-SNAPSHOT/connectors/index.mdxopenmetadata-docs/content/v{version}-SNAPSHOT/connectors/{source_type}/index.mdx
Guidelines for Adding Connector Documentation
When adding documentation for a new connector, ensure the following steps are completed:1. Update the Connectors List
- Add the connector entry to the relevant version file located at:
partials/v1.x.x/...connectors-list.mdxThis ensures the connector is displayed in the list for the appropriate version.
2. Add Connector Logo
- Upload the connector’s logo to the directory:
/public/images/connectors
3. Update Menu
- Update the following files to reflect the addition of the new connector:
menu.mdx
4. Update Homepage Connectors List
- Add the new connector to the homepage connectors list. Note: Ping the responsible person to ensure this step is completed.
5. Include Installation Images
- Add images for the installation steps of the connector.
Images should be added for all versions in the following directory:
/public/images/[version]/connectors/[connectorName] - Ensure the images align with the steps described in the installation documentation for the connector.
How to test the Documentation
You can check your changes in the documentation by building it locally usingmake docker-docs. This will pull the OpenMetadata documentation Docker images and mount the project as a volume.
You should be able to see the documentation page on http://localhost:3000.