1. Get Debian/Ubuntu:
2. Optional OS upgrades:
3. Node.js tools:
1. [Install NVM](https://github.com/brettjrea/Debian_Install_NVM) - Node Version Manager- Install NVS - Node Version Switcher (added 02/23 it is a cross-platform node based successor/replacement for NVM)
4. Build tools:
5. Add a Backend:
6. Add a Frontend:
7. Configure Process Manager:
8. Add GitHub CLI:
This markdown provides a quick and easy script to upgrade a Debian Buster operating system to Bullseye. The script has been verified as still working in 2022, although it may require the manual installation of wget.
To upgrade Debian Buster to Bullseye with upgrade.sh run the following commands:
sudo apt upgrade -y && sudo apt update -y && sudo apt autoremove -y &&
sudo apt install wget -y &&
sudo apt-get install --reinstall ca-certificates -y &&
wget https://raw.githubusercontent.com/brettjrea/Scripts_Fix/master/fixscripts.sh &&
wget https://raw.githubusercontent.com/brettjrea/Debian_Bullseye_Upgrade_Script/master/debian-bullseye-upgrade-script.sh &&
sudo bash fixscripts.sh &&
sudo bash upgrade.sh &&
sudo apt autoremove -y &&
sudo apt clean -y