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

lint:
		pip install flake8
		flake8 index.py aura_api.py config.py

run_refresh:
		docker compose up \
		--exit-code-from run-refresh \
		--abort-on-container-exit \
		--build run-refresh

docker_down:
		docker compose down --remove-orphans
