This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/setup-scripts/setup.sh

73 lines
1.9 KiB
Bash
Raw Normal View History

2020-01-29 20:46:44 +00:00
#! /usr/bin/env bash
set -e
# Copy over basic configuration files.
cp ./tmux.conf ~/.tmux.conf
cp ./bashrc ~/.bashrc
source ~/.bashrc
# Nodejs install prerequisite. From official documentation.
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
# Yarn install prerequisite.
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
# Apt installations.
sudo apt-get update
2020-01-29 21:41:20 +00:00
sudo apt-get -y install ufw tmux ranger htop nload nginx certbot \
2020-01-30 16:40:44 +00:00
python-certbot-nginx nodejs gcc g++ make yarn git vim
2020-01-29 20:46:44 +00:00
# Install pm2
sudo npm i -g pm2
# terminfo for alacritty terminal via ssh
wget -c https://raw.githubusercontent.com/alacritty/alacritty/master/extra/alacritty.info
sudo tic -xe alacritty,alacritty-direct alacritty.info
rm alacritty.info
# Install Go 1.13.7.
wget -c https://dl.google.com/go/go1.13.7.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.13.7.linux-amd64.tar.gz
source ~/.bashrc
2020-01-29 20:46:44 +00:00
rm go1.13.7.linux-amd64.tar.gz
2020-01-29 22:30:40 +00:00
# Sanity check that will pass if go was installed correctly.
2020-01-29 20:46:44 +00:00
go version
# Install Sia
2020-01-30 16:31:48 +00:00
cwd=$(pwd)
2020-01-30 16:40:44 +00:00
cd ~/
2020-01-29 20:46:44 +00:00
git clone https://gitlab.com/NebulousLabs/Sia
cd Sia && git checkout viewnode && make
2020-01-29 21:41:20 +00:00
2020-01-30 16:31:48 +00:00
cd $cwd
2020-01-29 21:41:20 +00:00
# Setup nginx config
sudo cp ./skynet-nginx.conf /etc/nginx/sites-available/skynet
sudo nginx -t
2020-01-30 16:40:44 +00:00
sudo ln -s /etc/nginx/sites-available/skynet /etc/nginx/sites-enabled/skynet
sudo rm /etc/nginx/sites-enabled/default
2020-01-29 21:41:20 +00:00
sudo systemctl reload nginx
# Setup firewall
2020-01-30 16:40:44 +00:00
# TODO: disable plain HTTP eventually
2020-01-29 21:41:20 +00:00
sudo ufw enable
2020-01-30 16:40:44 +00:00
sudo ufw allow ssh
2020-01-29 21:41:20 +00:00
sudo ufw allow 'Nginx Full'
2020-01-30 16:40:44 +00:00
sudo ufw allow 'Nginx HTTP'
2020-01-29 21:41:20 +00:00
2020-01-29 22:30:40 +00:00
# Setup skynet frontend.
cd ~/
2020-01-30 18:38:14 +00:00
git clone https://github.com/NebulousLabs/skynet-webportal && cd skynet-webportal
2020-01-29 21:41:20 +00:00
yarn
2020-01-29 22:30:40 +00:00
# Start the frontend.
pm2 --name skynet start npm -- start
2020-01-30 16:31:48 +00:00
# Add SSH keys and set SSH configs
cd $cwd
sudo cp ./ssh_config /etc/ssh/ssh_config
mkdir -p ~/.ssh
cat ./authorized_keys >> ~/.ssh/authorized_keys