From 2bbb316b9fc3761cc53054e40f1c1bf067a2749f Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Thu, 24 Jun 2021 13:15:57 -0400 Subject: [PATCH] Add debug output to gunicorn start --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1355509..ac29a77 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ }, "scripts": { "start:frontend": "react-scripts start", - "start:api": "cd api/ && venv/bin/gunicorn -b 127.0.0.1:5000 api:app", + "start:api": "cd api/ && venv/bin/gunicorn -b 127.0.0.1:5000 --log-level debug api:app", "start:docs": "start-storybook -p 6006 -s public -c storybook-config --no-manager-cache", "build:frontend": "react-scripts build", "build:docs": "build-storybook -s public -c storybook-config -o build-docs",