# Datadog Tools

CLI tools for managing Datadog resources.

## Running

### Local/workstation

```sh
# See what commands are available
uv run datadog-tools --help

# Run unit tests
make unit

# Run integration tests - need to authenticate with shared AWS account first
make test_integration

# Lint
make lint

# Format
make fmt
```

### Docker

```sh
# See what commands are available
docker compose run --rm datadog-tools

# Lint and unit tests
docker compose run --rm --build unit-lint

# Integration tests - need to authenticate with shared AWS account first
docker compose run --rm --build integration-test

# Format
make docker_fmt
```
