.PHONY: setup help

setup:  ## Setup the project environment/dependencies
	docker-compose up --build -d

.PHONY: build help


.PHONY: lint
lint: ## Lint the project using 

.PHONY: test
test:  ## Run unit tests


.PHONY: teardown help

teardown:  ## Setup the project environment/dependencies
	docker-compose down 

help:  ## Print Make usage information
	@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z0-9_-]+:.*?## / {printf "\033[36m%-16s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) | sort
