# Generate and push events to exploration sqs queue
```
usage: generate-events [-h] --env {dev,qa,stage,prod} --uow_ids UOW_IDS
                       [--debug] [--json]

optional arguments:
  -h, --help            show this help message and exit
  --env {dev,qa,stage,prod}
                        dev/qa/stage/prod
  --uow_ids UOW_IDS     123,234,345 - slz UOW ids you need to reprocess
  --debug               additional log level
  --json                json output

```
## Run with local env
    make venv
    . venv/bin/activate
    generate-events --env dev --uow_ids 22083,22995 --debug

## run with docker
    make docker/image/build
    docker run -it -v ~/.aws/:/app/.aws/ generate_events:develop --env dev --uow_ids 22083,22995 --debug
