aphilippov/python-server-api
0
1.DEFAULT_GOAL := help2 3.PHONY: build4build: ## Build the Docker containers5 docker compose build6 7.PHONY: start8start: ## Start the application9 docker compose up -d10 11.PHONY: stop12stop: ## Stop the application13 docker compose down14 15.PHONY: logs16logs: ## Tail the logs for the application17 docker compose logs -f18 19.PHONY: help20help: ## Display this help message21 @echo "Usage: make [target] ...\n"22 @echo "Available targets:"23 @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf " %-15s %s\n", $$1, $$2}' $(MAKEFILE_LIST)24 