From 263bc1a86028eb243edffb0794bcaee73a73cf51 Mon Sep 17 00:00:00 2001 From: Tobias Kurze Date: Tue, 12 Mar 2019 16:48:27 +0100 Subject: [PATCH] added run.sh and changes to submodules --- .idea/vue_ts_test.iml | 3 ++- backend | 2 +- frontend | 2 +- run.py | 1 - run.sh | 2 ++ 5 files changed, 6 insertions(+), 4 deletions(-) mode change 100644 => 100755 run.py create mode 100644 run.sh diff --git a/.idea/vue_ts_test.iml b/.idea/vue_ts_test.iml index 122833e..0e3ef26 100644 --- a/.idea/vue_ts_test.iml +++ b/.idea/vue_ts_test.iml @@ -5,8 +5,9 @@ + - + \ No newline at end of file diff --git a/backend b/backend index 38ab157..c8b01b4 160000 --- a/backend +++ b/backend @@ -1 +1 @@ -Subproject commit 38ab1578b0e0e99061fe380a5acf0f6f8542a27f +Subproject commit c8b01b450bb2a597cbb36208aee5ade0559fc169 diff --git a/frontend b/frontend index 48e8759..18f22fd 160000 --- a/frontend +++ b/frontend @@ -1 +1 @@ -Subproject commit 48e8759c316df7b01fc13914c5c4987cfb3b6004 +Subproject commit 18f22fdffa04e344251ad1da184743f6c5a98dc2 diff --git a/run.py b/run.py old mode 100644 new mode 100755 index 4adf65b..d22c3ad --- a/run.py +++ b/run.py @@ -1,7 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- - from backend import app app.run(debug=True) diff --git a/run.sh b/run.sh new file mode 100644 index 0000000..af1b779 --- /dev/null +++ b/run.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +$(PIPENV_PIPFILE=./backend/Pipfile pipenv --venv)/bin/python run.py