Welcome to the official documentation repository for Open Integration Engine™. This website is built with VitePress and hosted on GitHub Pages.
We welcome contributions from the community! Whether you are fixing a typo, adding a new guide, or sharing a script example, your help is appreciated.
- Bun: This project uses Bun for dependency management and as the runtime. Install Bun.
-
Fork the repository to your own GitHub account.
-
Clone your fork locally:
git clone https://github.com/YOUR_USERNAME/docs-website.git cd docs-website -
Install dependencies:
bun install
To start the local development server with hot-reloading:
bun run docs:devThe documentation will be accessible at http://localhost:5173 (or the port shown in your terminal).
-
Create a Branch: Always work on a new branch for your changes.
git checkout -b fix/typo-in-intro
-
Make Changes: Edit the Markdown files in the
docsdirectory. -
Update Navigation: If you created a new file, update
.vitepress/config.mtsto include the new page in the sidebar. -
Preview: Ensure your changes look correct in the local browser preview.
-
Commit: Sign off your commits.
git commit -s -m "docs: fix typo in introduction" -
Push: Push your branch to your fork.
-
Pull Request: Open a Pull Request (PR) against the
mainbranch of this repository.
- Markdown Features: We use VitePress Markdown. This supports standard Markdown as well as advanced features like custom containers, Vue components inside markdown, and more.
- Code Blocks: Please use language-specific code fences (e.g., ```js) for syntax highlighting.
- Images: You can store images in the same directory as the markdown file or in the
docs/publicdirectory. Reference them using relative paths.
To maintain the open and permissive nature of this documentation, we require all contributors to agree to the project's licensing terms and verify the origin of their contributions.
By submitting a Pull Request to this repository, you agree to the following licensing terms:
- Documentation Content (Text/Media): You agree to license your text and media contributions under the Creative Commons Attribution 4.0 International (CC-BY 4.0) license.
- New Code Samples: You agree to dedicate any original code you write for this project to the Public Domain (CC0 1.0 Universal).
If you are including code copied from another open source project (e.g., a community plugin, a library on GitHub, or a Stack Overflow snippet), you generally do not have the right to re-license it under CC0.
In these cases, you must preserve the original license by including the license header directly inside the code block.
- Why? Users often copy code via the "Copy" button on the rendered website. If the license is in a separate file, it gets left behind. The license must travel with the snippet.
- Requirement: Identify the license of the code you are copying and ensure it is compatible with distribution in this documentation.
Example: Including an MPLv2 Licensed Snippet
/*
* Copyright (c) 2026 Original Author Name
* Licensed under the Mozilla Public License 2.0.
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at [https://mozilla.org/MPL/2.0/](https://mozilla.org/MPL/2.0/)
*/
export function importedCommunityLogic() {
// ... existing code ...
}We require all contributors to sign off on their commits to certify that they have the right to submit the code. We adhere to the Developer Certificate of Origin (DCO) 1.1.
By signing off, you certify that:
- You wrote the contribution, or
- You have the right to submit it under the project's open source license (or preserve the existing license as described above).
Read the full DCO 1.1 text here.
You must add a Signed-off-by trailer to your commit message using your real name and email.
Important: The name and email address in the Signed-off-by line must match the name and email address of the Git commit author.
Automatic Sign-off:
git commit -s -m "docs: add example for custom plugin"Resulting Commit Message:
docs: add example for custom plugin
Signed-off-by: Jane Doe <jane.doe@example.com>
Open Integration Engine™, OIE™, and the OIE logo are trademarks of the Open Integration Engine project.