diff --git a/install.sh b/install.sh
index 0dcaaf3ac14519e335952a21ff412f9f63b30a11..f41cb7e916f46514a1d3f99f78f98f553c59652f 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