mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
15 lines
299 B
Bash
15 lines
299 B
Bash
#! env bash
|
|
|
|
grep 'name:' config/services.js | \
|
|
sed 's/.*name: "\(.*\)",/\1/' | \
|
|
while read service
|
|
do
|
|
pushd $service
|
|
echo "Installing Service $service"
|
|
echo ' installing Node'
|
|
type nvm && nvm install
|
|
type nvm && nvm use
|
|
echo ' installing Dependencies'
|
|
npm install
|
|
popd
|
|
done
|