You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- sudo apt-get install curl
- sudo apt-get remove nodejs npm ## remove existing nodejs and npm packages
- # Using Ubuntu
- curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
- curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
- echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
- sudo apt-get update && sudo apt-get install yarn -y
- npm install
- npm audit fix --force
- cat /etc/masternodes/vivo_n1.conf | grep rpcpass
-
- nano /etc/lighttpd/lighttpd.conf
-
- /etc/init.d/lighttpd restart
-
- ufw allow 3002
-
- change port in
- /home/ddp/vivo-explorer/docs/btc-explorer.com.conf
|