Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.62 KB

CONTRIBUTING.md

File metadata and controls

49 lines (36 loc) · 1.62 KB

Contributing to Envario

Thank you for considering contributing to Envario! We welcome contributions from the community and are excited to work with you.

Getting Started

  1. Fork the repository: Click the "Fork" button at the top right of the repository page.
  2. Clone your fork: Clone your forked repository to your local machine.
    git clone https://github.com/your-username/envario.git
    cd envario
    
  3. Create a new branch: Create a new branch for your feature or bugfix.
    git checkout -b my-feature-branch
    

Making Changes

  1. Install dependencies: Ensure you have all necessary dependencies installed.
    npm install
    
  2. Make your changes: Implement your feature or bugfix.

Submitting Changes

  1. Commit your changes: Commit your changes with a clear and concise commit message.
    git add .
    git commit -m "Add feature XYZ"
    
  2. Push to your fork: Push your changes to your forked repository.
    git push origin my-feature-branch
    
  3. Open a Pull Request: Open a pull request on the original repository. Provide a detailed description of your changes and any relevant information.

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project, you agree to abide by its terms.

Contact

If you have any questions or need further assistance, feel free to open an issue or contact the maintainers.

Thank you for your contributions!

You can now create this file in your repository using the GitHub interface or your local development environment.