Skip to content

Commit

Permalink
make install script more verbose (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelblum authored Nov 18, 2024
1 parent 1ba83a9 commit ee030bb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ fi
# use correct npm and install dependencies
nvm install
nvm use

echo -e "\033[34m\nInstalling dependencies for root package\033[0m"
npm install


Expand Down Expand Up @@ -49,9 +51,13 @@ sh ./site/intl-update.sh
sh ./admin/intl-update.sh
npm run create-site-configs-env

echo -e "\033[34m\nInstalling dependencies for admin\033[0m"
npm --prefix admin install
echo -e "\033[34m\nInstalling dependencies for api\033[0m"
npm --prefix api install
echo -e "\033[34m\nInstalling dependencies for site\033[0m"
npm --prefix site install
echo -e "\033[34m\nInstalling dependencies for create-app\033[0m"
npm --prefix create-app install

mkdir -p ./api/uploads

0 comments on commit ee030bb

Please sign in to comment.