From 252bf1e6a128ee3f499bf14300d190c6b3b1762c Mon Sep 17 00:00:00 2001 From: Mathieu Leplatre Date: Thu, 8 Jun 2017 11:35:24 +0200 Subject: [PATCH] Fix requests output when running with make serve (fixes #1242) --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4b193f1ad..c799c7df3 100644 --- a/Makefile +++ b/Makefile @@ -81,8 +81,7 @@ version-file: echo '{"name":"$(NAME)","version":"$(VERSION)","source":"$(SOURCE)","commit":"$(COMMIT)"}' > version.json serve: install-dev $(SERVER_CONFIG) migrate version-file -# Reload is temporary deactivated because Pylons/pyramid/pull#2962 - $(VENV)/bin/kinto start --ini $(SERVER_CONFIG) # --reload + $(VENV)/bin/kinto start --ini $(SERVER_CONFIG) --reload migrate: install $(SERVER_CONFIG) $(VENV)/bin/kinto migrate --ini $(SERVER_CONFIG)