Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.6 KB

File metadata and controls

53 lines (36 loc) · 1.6 KB

Contributing to DockerComposeAPI

Thank you for considering contributing to DockerComposeAPI! We appreciate your time and effort.

How to Contribute

  1. Fork the repository: Click the "Fork" button at the top right of the repository page.

  2. Clone the forked repository:

    git clone https://github.com/senad-d/DockerComposeAPI.git
    cd DockerComposeAPI
  3. Create a new branch: Make sure your branch name is descriptive.

    git checkout -b feature/your-feature-name
  4. Make changes: Implement your feature, bug fix, or documentation update.

  5. Commit your changes: Write a clear and concise commit message.

    git add .
    git commit -m "Brief description of your changes"
  6. Push to your fork:

    git push origin feature/your-feature-name
  7. Open a Pull Request: Navigate to the original repository and click "New Pull Request". Follow the template and provide a detailed description of your changes.

Code Style and Guidelines

  • Follow the project's coding style and conventions.
  • Write clear and concise commit messages.
  • Update documentation if necessary.
  • Write tests for new features or bug fixes, if applicable.

Reporting Issues

  • Check if the issue already exists in the issues list.
  • If not, open a new issue and provide as much detail as possible.

Resources

Thank you for contributing to DockerComposeAPI!