Development Setup
Development Installation
# Install with development dependencies
uv sync --extra devManaging Dependencies
Adding Dependencies
# Add a regular dependency
uv add package-name
# Add an optional dependency (e.g., Redis)
uv add --optional redis redis
# Add a development dependency
uv add --dev pytest-covRemoving Dependencies
Running the Application
Running Tests
Development Commands
Project Structure
Development Best Practices
Next Steps
Last updated