Base Symfony Setup

This commit is contained in:
2024-12-29 16:18:38 +01:00
parent 628bfa22f0
commit d337ce86fb
31 changed files with 5504 additions and 5 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
.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}'