From db7cf7381bcbc19d4ef85aa1945f9d559d7f7d69 Mon Sep 17 00:00:00 2001 From: Whitney B Date: Tue, 12 May 2020 22:32:15 -0700 Subject: [PATCH] Fixed missing host parameter bug. (#38) Co-authored-by: Whitney Burian --- whoogle-search | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whoogle-search b/whoogle-search index 3393528..b4f229c 100755 --- a/whoogle-search +++ b/whoogle-search @@ -21,5 +21,5 @@ mkdir -p $STATIC_FOLDER if [[ $SUBDIR == "test" ]]; then pytest -sv else - python3 -m app --port $PORT + python3 -um app --host 0.0.0.0 --port $PORT fi