Skip to content
Snippets Groups Projects
Commit db6272c2 authored by David Trattnig's avatar David Trattnig
Browse files

Changed order of common steps.

parent 03e7b74b
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment