From 626b57ba633bbbdd399935a5cae2d2032127506f Mon Sep 17 00:00:00 2001 From: Mathieu Darse Date: Wed, 22 Oct 2014 11:16:44 +0200 Subject: [PATCH] Add config watcher requires `entr` binary --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000..2d06cdc528 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +config: + @php bin/console compile:configuration + +watch: + @echo 'config/configuration.yml' | entr make config + +.PHONY: config watch