Let's Just Blog-105
MEAN Stack? Following Let's Just Blog-102 and a link on Digital Ocean , I will install MEAN stack on f1-micro instance of GCP, and you should able to build a website without much of a initial capital expense. Please enable Google Cloud with your email, and provision an free f1-micro VM. Install NodeJS on Ubuntu ssh-keygen -t rsa -f ./yourkey -C ubuntu ssh -i yourkey ubuntu@youripaddress After generating the ssh key and associating it with your instance, please connect to your vm with ssh. You should also allow the http traffic and easiest way to enable the "Allow Http Traffic" checkbox. sudo apt update sudo apt install apache2 sudo ufw app list http://youripaddress/ sudo apt-get install git Install NodeJS sudo apt-get install nodejs sudo apt-get install npm sudo ln -s /usr/bin/nodejs /usr/bin/node node -v [v4.2.6] npm --version [3.5.2] Install NGINX sudo apt-get update sudo apt-get install nginx nginx -v [nginx version: nginx/1.10.3 (Ubuntu)] Congra...