.PHONY: up down logs logs-all env clean

env:
	python -mvenv env
	./env/bin/pip3 install -r requirements.txt

clean:
	rm -rf ./env

up:  ## Start containers in background
	docker compose up --build -d --remove-orphans
down:  ## Stop containers
	docker compose down --remove-orphans
logs:  ## View uat script logs
	docker compose logs -f python-app
logs-all:  ## View all logs
	docker compose logs -f

