From 07e444c3b46dd38320618218abcd6e094c79eaba Mon Sep 17 00:00:00 2001 From: n07070 Date: Mon, 9 May 2022 01:49:35 +0200 Subject: [PATCH] Mise en route plus simple --- run.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/run.sh b/run.sh index bc38cda..8b5a274 100755 --- a/run.sh +++ b/run.sh @@ -1,3 +1,7 @@ +virtualenv . + +pip install -r requirements.txt + export FLASK_APP=src/main.py export FLASK_ENV=development flask run --host 192.168.0.42 --debugger --eager-loading