mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 20:54:20 +01:00
11 lines
235 B
Makefile
11 lines
235 B
Makefile
.DEFAULT_GOAL := help
|
|
|
|
|
|
.PHONY: shell
|
|
shell:
|
|
@docker compose exec php bash
|
|
|
|
.PHONY: help
|
|
help:
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|