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

install:
	pipenv --rm install --dev --python 3.8.2

start_es_qa:
	pipenv run locust -f elasticsearch/qa_locustfile.py --host='ES QA' &

stop:
	kill $$(ps aux | grep '[l]ocustfile.py' | awk '{print $$2}')
