Newer
Older
web-services / Makefile
@Nicolas Thouvenin Nicolas Thouvenin on 9 Dec 2021 371 bytes helpers to test in production environnment
.PHONY: help
.DEFAULT_GOAL := help

help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
shell: ## Open dockerized Bash terminal
	@docker-compose run --no-deps --rm shell
python: ## Open dockerized python command line interface
	@docker-compose run --no-deps --rm shell python3