# Add any tasks that are not dependent on files to the .PHONY list.
.PHONY: clean

clean:
	rm -rf env

env:
	python3 -m venv env
	env/bin/pip3 install --upgrade pip
	env/bin/pip3 install --upgrade wheel
	env/bin/pip3 install -r requirements.txt

apocalypse:
	JWT_TOKEN=${JWT_TOKEN} LOCUST_LOCUSTFILE=locustfile.py env/bin/locust --host ${HOST}
