Skip to content

Latest commit

 

History

History
executable file
·
59 lines (35 loc) · 1.67 KB

CONTRIBUTING.md

File metadata and controls

executable file
·
59 lines (35 loc) · 1.67 KB

Contributing

Contributions make the open-source community a fantastic place to learn, inspire, and create. Any contributions you make are greatly appreciated.

The development branch is main. This is the branch that all pull requests should be made against.

Please try to create bug reports that are:

  • Reproducible. Include steps to reproduce the problem.
  • Specific. Include as much detail as possible: which version, what environment, etc.
  • Unique. Do not duplicate existing opened issues.
  • Scoped to a Single Bug. One bug per report.

Code Style

Please follow the node style guide.

Testing

Please test your changes before submitting the PR.

Good First Issues

We have a list of help wanted that contains small features and bugs with a relatively limited scope. Nevertheless, this is a great place to get started, gain experience, and get familiar with our contribution process.

Development

Please follow these simple steps to get a local copy up and running.

  1. Fork the repository

    Click the Fork button at the top-right corner of this repository.

  2. Clone your fork

    git clone https://github.com/your-username/AIVO.git
    cd AIVO
  3. Create a new branch

    git checkout -b feature-branch-name
  4. Make your changes

    Implement your changes and commit them with a clear and descriptive commit message.

  5. Push to your fork

    git push origin feature-branch-name
  6. Create a pull request

    Open a pull request on the original repository to merge your changes.