From 06531c19f6df32c3f162c509d2c4dbc820c1e5f6 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Thu, 10 Dec 2020 18:04:14 -0800 Subject: [PATCH] log the access to stdout for now.. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 361a7b3..29b0413 100644 --- a/Makefile +++ b/Makefile @@ -8,4 +8,4 @@ env: ($(VIRTUALENV) p && . ./p/bin/activate && pip install -r requirements.txt) run: - ([ ! -d p ] && $(VIRTUALENV) p || : && . ./p/bin/activate && hypercorn --bind '0.0.0.0:7742' --bind '[::]:7742' --bind 'unix:/tmp/bitelab.sock' 'bitelab:getApp()') + ([ ! -d p ] && $(VIRTUALENV) p || : && . ./p/bin/activate && hypercorn --bind '0.0.0.0:7742' --bind '[::]:7742' --bind 'unix:/tmp/bitelab.sock' --access-logfile - 'bitelab:getApp()')