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 ..." ...@@ -20,6 +20,18 @@ echo "Installation OPAM Packages ..."
bash script/install-opam-packages.sh 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 # Development
if [ $mode == "dev" ]; then if [ $mode == "dev" ]; then
...@@ -65,16 +77,7 @@ if [ $mode == "prod" ]; then ...@@ -65,16 +77,7 @@ if [ $mode == "prod" ]; then
fi fi
# Development and Production # Setup Database
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
echo "Setting up database ..." echo "Setting up database ..."
echo 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