Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.97 KB

CONTRIBUTING.md

File metadata and controls

50 lines (41 loc) · 1.97 KB

Contributing to CarbonLauncher

Thank you for considering contributing to CarbonLauncher, a mod loader for Scrap Mechanic! Your help is greatly appreciated. Below are some guidelines to help you get started.

Table of Contents

  1. Code of Conduct
  2. How to Contribute
  3. Reporting Bugs
  4. Suggesting Features
  5. Pull Requests
  6. Development Setup

Code of Conduct

Please read and follow our Code of Conduct to ensure a welcoming environment for all contributors.

How to Contribute

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes.
  4. Commit your changes (git commit -m 'Add some feature').
  5. Push to the branch (git push origin feature-branch).
  6. Open a pull request.

Reporting Bugs

If you find a bug, please report it by opening an issue. Include as much detail as possible:

  • Steps to reproduce the bug.
  • Scrap Mechanic version.
  • CarbonLauncher version.
  • Any relevant logs or screenshots.

Suggesting Features

We welcome feature suggestions! To suggest a new feature:

  1. Check if the feature is already requested in the issues.
  2. If not, open a new issue with a detailed description of the feature and why it would be useful.

Pull Requests

When submitting a pull request:

  1. Ensure your code follows the project's coding style.
  2. Write clear, concise commit messages.
  3. Include tests for new features or bug fixes.
  4. Ensure all tests pass before submitting.

Development Setup

To set up the development environment:

  1. Clone the repository: git clone https://github.com/yourusername/CarbonLauncher.git
  2. Navigate to the project directory: cd CarbonLauncher
  3. Install dependencies: npm install (or the appropriate command for your package manager)
  4. Run the project: npm start (or the appropriate command for your project)

Thank you for contributing to CarbonLauncher!