This project teaches how to deploy a react application to server (AWS, GCP, AZURE, DIGITAL OCEAN, VPS)
sudo apt-get update
sudo apt-get install -y ca-certificates curl gnupg
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
NODE_MAJOR=20
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
sudo apt-get update
sudo apt-get install nodejs -y
git clone https://github.com/africacloudpapa/new-react-app.git
cd new-react-app
npm install
npm run build
sudo apt install nginx -y
sudo cp -r build/* /var/www/html