-
Notifications
You must be signed in to change notification settings - Fork 332
Closed
Labels
Description
Something like this
#################################################################################
# GLOBALS #
#################################################################################
PACKAGE_DIR = pymc_marketing
#################################################################################
# COMMANDS #
#################################################################################
.PHONY: install-deps authenticate-dvc pull-data-dvc launch lint lint-fix format help
install-deps: ## install dependencies locally
poetry install
#################################################################################
# Self Documenting Commands #
#################################################################################
.DEFAULT_GOAL := help
help: ## Show this help message
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'