Development Setup Prerequisites Python 3.12+ Poetry Docker (optional) Installation Steps Bash 1 2 3 4 5 6 7 8 9 10 11 12 13# Clone the repository git clone https://github.com/quantalogic/quantalogic.git cd quantalogic # Create virtual environment python -m venv .venv source .venv/bin/activate # Install dependencies poetry install --with dev # Run tests poetry run pytest Local Development Bash1 2 3 4 5# Start development server poetry run quantalogic # Run documentation poetry run docs-serve