Skip to content

Latest commit

 

History

History
76 lines (63 loc) · 2.56 KB

File metadata and controls

76 lines (63 loc) · 2.56 KB

Contributing to Rextensity

Thank you for considering contributing to Rextensity! Your support and involvement help improve the project for everyone.

Table of Contents


Code of Conduct

Please review and adhere to our Code of Conduct to maintain a respectful and collaborative environment.

How to Contribute

There are several ways to contribute:

  1. Reporting Bugs – Let us know about any issues you encounter.
  2. Suggesting Features – Share your ideas for improving Rextensity.
  3. Contributing Code – Tackle an open issue or propose new features.
  4. Improving Documentation – Help keep documentation clear and up-to-date.

Issues

  1. Check existing issues to see if your issue has already been reported.
  2. If it hasn’t, create a new issue and provide detailed information.

Pull Requests

  1. Fork the repository and clone it locally.
  2. Create a new branch: git checkout -b feature-name.
  3. Make your changes, following the project's code style.
  4. Test your changes thoroughly.
  5. Commit and push your changes to your forked repository.
  6. Create a pull request (PR) from your branch to the main branch of Rextensity:
    • Provide a clear and descriptive title for your PR.
    • Explain the purpose and scope of your changes in the description.

Guidelines

  • Follow coding conventions and style guides as per the project.
  • Document any new functions or components.
  • Write tests for new features and ensure all tests pass.

Setting Up Your Development Environment

  1. Clone the repository:
    git clone https://github.com/diluteoxygen/Rextensity.git
  2. Navigate to the project directory:
    cd Rextensity
  3. Install the dependencies:
    # For example, if using npm
    npm install
  4. Start the development server:
    npm start

Reporting Bugs

To report a bug:

  • Describe the problem and steps to reproduce it.
  • Mention the expected vs. actual behavior.
  • Include screenshots or logs if applicable.

Suggesting Enhancements

When suggesting a feature:

  • Explain the motivation and use case.
  • Provide relevant context and details to guide development.

Thank you for contributing to Rextensity!