Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.07 KB

CONTRIBUTING.md

File metadata and controls

38 lines (32 loc) · 1.07 KB

Contributing to nodebench

Thank you for your interest in contributing to nodebench! We welcome contributions from the community to help make our hardware benchmarking platform better.

How to Contribute

Reporting Issues

  • Check if the issue already exists in our GitHub Issues
  • Include detailed steps to reproduce the issue
  • Include system information and hardware details when relevant
  • Use our issue template if available

Pull Requests

  1. Fork the repository
  2. Create a new branch for your feature/fix
  3. Write clean, well-documented code
  4. Follow our coding style and conventions
  5. Include tests when applicable
  6. Submit a pull request with a clear description of changes

Development Setup

  1. Clone the repository
  2. Install dependencies:
    npm install
  3. Create a .env.local file based on .env.example
  4. Start the development server:
    npm run dev
  5. Make your changes
  6. Run tests:
    npm test
  7. Commit your changes following conventional commits