From 2c849fd01ac6ce649d35bffba6f6c7add41b6f4b Mon Sep 17 00:00:00 2001 From: richard-dds Date: Mon, 4 Jun 2018 16:26:17 -0400 Subject: [PATCH] Update script/server to use pipenv --- script/server | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/script/server b/script/server index ce8dd094..8e1b5b00 100755 --- a/script/server +++ b/script/server @@ -6,8 +6,5 @@ set -e # Ensure we are in the app root directory (not the /script directory) cd "$(dirname "${0}")/.." -# Activate virtual environment -source .venv/bin/activate - # Launch the app -python3 app.py ${@} +pipenv run python app.py ${@}