Skip to content

Latest commit

 

History

History
112 lines (74 loc) · 2.74 KB

CONTRIBUTING.md

File metadata and controls

112 lines (74 loc) · 2.74 KB

Contributing to c6t

Thank you for considering contributing to the c6t project! We welcome contributions of all kinds, including bug fixes, feature enhancements, documentation improvements, and more.

Table of Contents

Getting Started

  1. Fork the repository.

  2. Clone your fork:

    $ git clone <your-fork-url>
    $ cd c6t-main
  3. Install Rye if you haven't already:

    $ curl -sSf https://rye.astral.sh/get | bash
  4. Install the project dependencies:

    $ rye sync

How to Contribute

Reporting Bugs

If you find a bug, please report it by creating an issue in the GitHub repository. Provide as much detail as possible, including steps to reproduce the issue, your environment, and any relevant logs or screenshots.

Suggesting Features

We welcome feature suggestions! Please open an issue to discuss the feature before starting work on it. This helps ensure that the feature is aligned with the project goals and avoids duplicate efforts.

Submitting Pull Requests

  1. Create a new branch for your work:

    $ git checkout -b feature/your-feature-name
  2. Make your changes and commit them with clear and concise commit messages.

  3. Push your branch to your fork:

    $ git push origin feature/your-feature-name
  4. Open a pull request against the main branch of the original repository. Provide a clear description of your changes and any additional context that might be helpful.

Development

Setting Up

  1. Clone the repository:

    $ git clone <repository-url>
    $ cd c6t-main
  2. Install Rye:

    $ curl -sSf https://rye.astral.sh/get | bash
  3. Install the dependencies:

    $ rye sync

Running Tests

To run the tests, use:

$ rye run pytest

Style Guide

  • Follow PEP 8 guidelines for Python code.
  • Use meaningful variable and function names.
  • Write docstrings for all functions, classes, and modules.
  • Ensure your code is well-documented and includes comments where necessary.

License

By contributing to this project, you agree that your contributions will be licensed under the Apache License.

Thank you for contributing!