### Install Dependencies Source: https://github.com/trailofbits/anamorpher/blob/main/CONTRIBUTING.md Installs project dependencies using uv. ```bash uv sync ``` -------------------------------- ### Run Backend Server Source: https://github.com/trailofbits/anamorpher/blob/main/README.md Starts the Anamorpher backend application. This command should be run from the project root directory. ```bash uv run python backend/app.py ``` -------------------------------- ### Run Linter and Formatter Source: https://github.com/trailofbits/anamorpher/blob/main/CONTRIBUTING.md Applies linting and formatting fixes using ruff via uv. ```bash uv run ruff check --fix ``` ```bash uv run ruff format ``` -------------------------------- ### Run Type Checker Source: https://github.com/trailofbits/anamorpher/blob/main/CONTRIBUTING.md Performs type checking using ty via uv. ```bash uv run ty check ``` -------------------------------- ### Run Tests Source: https://github.com/trailofbits/anamorpher/blob/main/CONTRIBUTING.md Executes all project tests using pytest via uv. ```bash uv run pytest ``` -------------------------------- ### Run Tests with Verbose Output Source: https://github.com/trailofbits/anamorpher/blob/main/CONTRIBUTING.md Executes all project tests with verbose output using pytest via uv. ```bash uv run pytest -v ``` -------------------------------- ### Run Specific Test File Source: https://github.com/trailofbits/anamorpher/blob/main/CONTRIBUTING.md Executes tests from a specific file using pytest via uv. ```bash uv run pytest tests/test_bicubic_gen_payload.py ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.