Skip to main content
Weโ€™re excited youโ€™re interested in contributing to the DxDevRel Guide! Whether youโ€™re fixing a typo, writing a new page, suggesting improvements, or adding helpful resources, your input helps improve this resource for the entire developer relations community. This guide walks you through the steps for making your first (or next!) contribution.

๐Ÿ› ๏ธ Getting Started

To contribute:
  1. Fork this repository to your GitHub account.
  2. Clone your fork to your local machine:
    git clone https://github.com/yourusername/dx-devrel-guide.git
    
  3. Install the Mintlify CLI:
    npm i -g mintlify
    
  4. Create a new branch to work on an issue or feature:
    git checkout -b feat/your-feature-name
    
  5. Run the project locally to view and test your changes:
    mintlify dev
    

โœ๏ธ Writing and Editing Content

When adding or updating content:
  • Create new files using this naming format: lowercase-with-dashes.mdx
  • Start every file with a title in the frontmatter:
---
title: Developer Relations Strategy
---

## Introduction
...
  • Use clear, concise, and inclusive language
  • Feel free to share real-world examples or anecdotes where relevant

โœ… Submitting Your Contribution

Once youโ€™re done making your changes:
  1. Commit your changes with a clear commit message:
    git commit -m "feat: add section on community engagement"
    
  2. Push your changes:
    git push origin feat/your-feature-name
    
  3. Open a Pull Request (PR) on the GitHub repository.
    • Link it to a relevant issue if applicable.
    • Keep pull requests focused and easy to review.

๐Ÿงพ Commit Message Guidelines

To keep things organized, we follow Conventional Commits:
TypeDescription
featNew features or pages
fixBug fixes or typo corrections
docsDocumentation-only changes
refactorRefactoring without behavior changes
choreRoutine tasks (e.g., config updates)
testAdding or updating tests

๐Ÿ’ฌ Need Help?

If youโ€™re unsure where to start:

๐Ÿ™ Thank You!

Your contributions, wheather big or small, make a real difference. This guide is built by and for the community, and we deeply appreciate your time, insight, and collaboration.