Skip to content
This repository was archived by the owner on May 19, 2026. It is now read-only.

Latest commit

 

History

History
23 lines (19 loc) · 610 Bytes

File metadata and controls

23 lines (19 loc) · 610 Bytes

Contributing to WhisperForge

Thank you for considering contributing to WhisperForge!

Getting Started

  1. Fork the repository and clone your fork.
  2. Create a virtual environment:
    python -m venv venv
    source venv/bin/activate
  3. Install dependencies required for development and testing:
    pip install -r requirements.txt
    You can also run scripts/setup_test_env.sh which performs these steps for you.
  4. Run the test suite to ensure everything works:
    pytest

Please submit pull requests from feature branches and ensure all tests pass.