QORTector-scripts/update_install_ui.sh
crowetic 8dd2f43143
This is a complete install and update script for the Qortal UI
This script requires superuser privileges to run, as it also checks, updates, and installs missing dependencies.
2022-01-06 19:10:22 -05:00

91 lines
1.6 KiB
Bash

#!/bin/sh
echo ""
echo "Updating APT and installing curl"
apt update && apt install curl -y
echo ""
echo "stopping node.js if running"
killall -9 node*
echo ""
echo "Installing NPM (Node Package Manager) if not already installed"
apt install npm
echo ""
echo "NodeJS version if installed (or to be updated)"
node -v
echo ""
#echo "Forcing system to recognize npm/curl changes via unseen terminal command"
#echo "This avoids having to restart the terminal rendering this process moot"
#. ~/.profile
#echo ""
echo "Clear NPM Cache"
npm cache clean -f
echo ""
echo "Installing yarn package manager"
npm install -g yarn
echo ""
echo "Installing Node's version manager 'n'"
npm install -g n
echo ""
echo "Installing most recent stable node.js release"
sudo n stable
echo ""
echo "stopping node.js if running"
killall -9 node*
echo ""
echo "removing old files"
rm -R UI
echo ""
echo "cloning git repositories for Qortal UI"
git clone https://github.com/qortal/UI
echo ""
cd UI
cd qortal-ui
echo "installing dependencies and linking with yarn link for build process"
yarn install
cd ../qortal-ui-core
yarn install
# Break any previous links
yarn unlink
yarn link
cd ../qortal-ui-crypto
yarn install
# Break any previous links
yarn unlink
yarn link
cd ../qortal-ui-plugins
yarn install
# Break any previous links
yarn unlink
yarn link
cd ../qortal-ui
yarn link qortal-ui-core
yarn link qortal-ui-crypto
yarn link qortal-ui-plugins
echo "starting build process...this may take a while...please be patient!"
yarn run build
echo ""
echo "BUILD COMPLETE! You can now make use of the new UI!"