Contributing¶
We welcome contributions to SurrealEngine!
Getting Started¶
Fork the repository
Clone your fork
Create a feature branch
Make your changes
Run tests
Submit a pull request
Development Setup¶
git clone https://github.com/YOUR_USERNAME/surrealengine.git
cd surrealengine
python -m venv venv
source venv/bin/activate
pip install -e ".[dev]"
Running Tests¶
pytest tests/
Guidelines¶
Follow PEP 8 style guide
Add tests for new features
Update documentation
Write clear commit messages
For more details, see the CONTRIBUTING.md file in the repository.