Development Setup¶
Set up Flux for local development.
Prerequisites¶
- Python 3.10+
- CUDA 12.0+ (optional for GPU development)
- Git
Clone Repository¶
Create Environment¶
Install Dependencies¶
Verify Installation¶
Development Workflow¶
- Create a branch:
git checkout -b feature/my-feature - Make changes
- Run checks:
ruff check . && pytest - Commit:
git commit -m "feat: add feature" - Push and create PR