Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 881 Bytes

File metadata and controls

29 lines (23 loc) · 881 Bytes

Contributing to ProxLock

We welcome contributions to ProxLock! Here's how you can help:

Getting Started

  1. Fork the repository and clone your fork

  2. Create a new branch for your feature or bug fix:

    git checkout -b feat/your-feature-name
    # or
    git checkout -b fix/your-bug-fix
  3. Make your changes following these guidelines:

    • Follow Swift style conventions
    • Write clear, descriptive commit messages
    • Add comments for complex logic
    • Ensure your code compiles without warnings
  4. Test your changes

    • Run the test suite: swift test
    • Test manually if applicable
    • Ensure migrations work correctly if you've modified the database schema
  5. Submit a pull request

    • Push your branch to your fork
    • Create a pull request with a clear description of your changes
    • Reference any related issues