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

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

start_gda:
	pipenv run locust -f gda/locustfile.py --host='GDA QA' &

populate_table:
	pipenv run python gda/populate_table.py

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