Créer une commande "make help" pour afficher les commentaires d'une commande
.PHONY: help
help: ## This help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(TARGETS) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m%s\n", $$1, $$2}'
| [user] | |
| name = Pavan Kumar Sunkara | |
| email = [email protected] | |
| username = pksunkara | |
| [core] | |
| editor = vim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| excludesfile = ~/.gitignore | |
| [sendemail] | |
| smtpencryption = tls |
Créer une commande "make help" pour afficher les commentaires d'une commande
.PHONY: help
help: ## This help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(TARGETS) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m%s\n", $$1, $$2}'
| <template> | |
| <button class="button" @click="logInWithFacebook"> Login with Facebook</button> | |
| </template> | |
| <script> | |
| export default { | |
| setup() { | |
| const logInWithFacebook = async () => { | |
| await loadFacebookSDK(document, "script", "facebook-jssdk") | |
| initFacebook().then(r => { |
| <?php | |
| declare(strict_types=1); | |
| namespace Infrastructure\ApiGateway\Kong; | |
| use Domain\Assert; | |
| use Ramsey\Uuid\Uuid; | |
| use Ramsey\Uuid\UuidInterface; | |
| use Symfony\Component\HttpFoundation\Response; |