Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 707 Bytes

File metadata and controls

31 lines (22 loc) · 707 Bytes

Contributing to Lightning Memory

Thanks for your interest in contributing!

Development Setup

git clone https://github.com/singularityjason/lightning-memory
cd lightning-memory
pip install -e ".[dev]"
pytest tests/

How to Contribute

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run tests (pytest tests/)
  5. Commit and push
  6. Open a Pull Request

Reporting Bugs

Use the bug report template.

Code Style

  • Follow existing patterns in the codebase
  • Keep functions focused and small
  • Add tests for new functionality