First off, thank you for considering contributing to Cascade Backup Utils! It's people like you that make this tool better for everyone.
This project and everyone participating in it is governed by our Code of Conduct. By participating, you are expected to uphold this code.
Before creating bug reports, please check the existing issues as you might find out that you don't need to create one. When you are creating a bug report, please include as many details as possible:
- Use a clear and descriptive title
- Describe the exact steps which reproduce the problem
- Provide specific examples to demonstrate the steps
- Describe the behavior you observed after following the steps
- Explain which behavior you expected to see instead and why
- Include screenshots if possible
If you have a suggestion for the project, we'd love to hear it. Enhancement suggestions are tracked as GitHub issues. When creating an enhancement suggestion, please include:
- A clear and descriptive title
- A detailed description of the proposed feature
- Any possible drawbacks or challenges
- If possible, a rough proposal of how to implement it
- Fork the repo and create your branch from
main - If you've added code that should be tested, add tests
- If you've changed APIs, update the documentation
- Ensure the test suite passes
- Make sure your code lints
- Issue that pull request!
- Clone the repository
- Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows use: venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt pip install -r requirements-dev.txt # For development dependencies
- Follow PEP 8 guidelines
- Use meaningful variable names
- Add comments for complex logic
- Keep functions focused and small
- Write docstrings for all public functions
- Write unit tests for new features
- Ensure all tests pass before submitting PR
- Run tests using:
pytest
- Update README.md with any new features
- Document new functions and classes
- Include examples for new features
- Keep documentation clear and concise
By contributing, you agree that your contributions will be licensed under the MIT License.