# README

This is a general purpose locust setup that allows you to make MANY requests to the same endpoint at once.

## Setup

```sh
# The JWT Token to authenticate your requests with
export JWT_TOKEN=YOURJWTHERE
# The API/service you want to test against
export HOST=https://qa-ows-pdp.theorchard.io

make clean env apocalypse

# Open up the Locust UI in browser to configure how many users you want to spawn, and how quickly to spawn them.
open http://localhost:8089/
```
