From 71cf2feffcbce110f1d25911e0b46b9de67f6692 Mon Sep 17 00:00:00 2001 From: David Trattnig <david.trattnig@o94.at> Date: Mon, 27 Apr 2020 17:46:56 +0200 Subject: [PATCH] Changed order of common steps. --- install.sh | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/install.sh b/install.sh index 0dcaaf3a..f41cb7e9 100755 --- a/install.sh +++ b/install.sh @@ -20,6 +20,18 @@ echo "Installation OPAM Packages ..." bash script/install-opam-packages.sh +# Development and Production + +echo "Create local Logs Folder ..." +mkdir -p logs + +echo "Installing Web Application Packages ..." +bash script/install-web.sh + +echo "Installing Python Requirements ..." +python3.7 $(which pip3) install -r requirements.txt + + # Development if [ $mode == "dev" ]; then @@ -65,16 +77,7 @@ if [ $mode == "prod" ]; then fi -# Development and Production - -echo "Create local Logs Folder ..." -mkdir -p logs - -echo "Installing Web Application Packages ..." -bash script/install-web.sh - -echo "Installing Python Requirements ..." -python3.7 $(which pip3) install -r requirements.txt +# Setup Database echo "Setting up database ..." echo -- GitLab