routine work...
chmod 700 ~/.ssh
(copy or create private key from somewhere else)
chmod 644 ~/.ssh/<key.pub>
chmod 600 ~/.ssh/<key>
sed -i "/IdentityFile/s/id_rsa/<key>/g" ~/.ssh/config
(fork from public repo to private repo)
git clone git@github.com:<github id>/<repo>.git
set nu
set softtabstop=4
set tabstop=4
set shiftwidth=4
set expandtab
sudo apt-get update
(cd to the working directory)
xargs sudo apt-get install -y < aptlist
sudo pip install pip --upgrade
sudo pip install virtualenv
virtualenv -p python3 ~/.env
source ~/.env/bin/activate
(cd to the working directory)
pip install -r requirements.txt
mysql-ctl start
mysqladmin -u root password '<root pass>'
(mysqladmin -u root -p'<old root pass>' password '<new root pass>')