From 81a99b6a80402f1e059989ca9bfdedb7deb10356 Mon Sep 17 00:00:00 2001 From: n07070 Date: Tue, 15 Mar 2022 14:48:05 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20d'un=20ex=C3=A9cutable=20pour=20lancer?= =?UTF-8?q?=20le=20serveur?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- run.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 run.sh diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..bc38cda --- /dev/null +++ b/run.sh @@ -0,0 +1,3 @@ +export FLASK_APP=src/main.py +export FLASK_ENV=development +flask run --host 192.168.0.42 --debugger --eager-loading