# Script to clear BACON history
This script will clear the BACON history in art_relations.youtube_channel_video_status table for provided youtube video IDs.

### Installation
```
cp .env.shadow .env
```
Update the art_relations database credentials in `.env`.

### Running the script
```
docker compose run --rm --build app --ids "<youtube_video_id>[,<youtube_video_id> ...]"
```

Example:
```
docker compose run --rm --build app --ids "BQPxgsLX2PM,Gx_8z-IufPg"
```

### Development

Run linting and tests:
```
docker compose run --rm --build lint-and-test
```

Format code:
```
docker compose run --rm --build format
```
