Skip to content

Development Setup

Prerequisites

  • Python 3.12+
  • Poetry
  • Docker (optional)

Installation Steps

Bash
# 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

Bash
1
2
3
4
5
# Start development server
poetry run quantalogic

# Run documentation
poetry run docs-serve