Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 826 Bytes

File metadata and controls

22 lines (15 loc) · 826 Bytes

Contributing to EDH Matchmaker

First off, thanks for taking the time to contribute!

How to Contribute

  1. Fork the Repository: Create your own fork of the project.
  2. Create a Branch: Create a branch for your feature or bugfix (git checkout -b feature/amazing-feature).
  3. Commit your Changes: Commit your changes (git commit -m 'Add some amazing feature').
  4. Push to the Branch: Push to your fork (git push origin feature/amazing-feature).
  5. Open a Pull Request: Submit a pull request to the main repository.

Development Setup

  1. Install Python 3.10+
  2. Install dependencies: pip install -r requirements.txt
  3. Run tests before submitting: python run_tests.py

Code Style

  • Please ensure your code is formatted cleanly.
  • Add comments where necessary to explain complex logic.