From 7faea458f3eee33d2a712288568fe411492cff5f Mon Sep 17 00:00:00 2001 From: Walker Waylon Scott Date: Mon, 10 Jul 2017 11:48:31 -0500 Subject: [PATCH] trying web.sh to deploy with gunicorn --- Procfile | 3 ++- web.sh | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 web.sh diff --git a/Procfile b/Procfile index fb9ebe7..d27770a 100644 --- a/Procfile +++ b/Procfile @@ -1 +1,2 @@ -web: gunicorn src//pyDataVizDay:app +web: web.sh + diff --git a/web.sh b/web.sh new file mode 100644 index 0000000..bc36f79 --- /dev/null +++ b/web.sh @@ -0,0 +1,2 @@ +cd src +gunicorn pyDataVizDay:app \ No newline at end of file