Thank you for your interest in contributing to the Replane documentation! This guide will help you get started.
- Node.js: Version 20.0 or greater
- npm, yarn, or pnpm
git clone https://github.com/replane-dev/replane-website.git
cd replane-websitenpm install
# or
pnpm installnpm run devThe site will open at http://localhost:4000.
npm run buildnpm run servenpm run gen-api-docs- Create a new Markdown file in the appropriate
docs/subdirectory - Add the page to
sidebars.tsin the appropriate category - Add frontmatter with metadata:
---
title: Your Page Title
description: A brief description of the page content
---
# Your Page Title
Your content here...Use absolute paths for links:
[Link text](/docs/path/to/page)Place images in static/img/ and reference them:
- Fork the repository
- Create a feature branch:
git checkout -b docs/your-improvement - Make your changes
- Test locally:
npm run dev - Build to check for errors:
npm run build - Commit your changes with a descriptive message
- Push to your fork and submit a pull request
- Use clear, concise language
- Include code examples where appropriate
- Add screenshots for UI walkthroughs
- Test all links and code snippets
- Follow the existing structure and formatting
Found an error or have a suggestion? Please open an issue on GitHub.
Have questions or want to discuss Replane? Join the conversation in GitHub Discussions.
By contributing to Replane documentation, you agree that your contributions will be licensed under the MIT License.