APP_NAME := s5p

.PHONY: install test lint clean build up down logs

install:
	pip install -e .

test:
	pytest tests/ -v

lint:
	ruff check src/ tests/

clean:
	rm -rf build/ dist/ src/*.egg-info
	find . -type d -name __pycache__ -exec rm -rf {} +

build:
	podman-compose build

up:
	podman-compose up -d

down:
	podman-compose down

logs:
	podman-compose logs -f
