Home > Net >  how to re deploy a node app on Amazon EC2
how to re deploy a node app on Amazon EC2

Time:07-20

I deployed a node js app on AWS EC2 amazon linux 2 so now I'm trying to update my project how can I push new changes of node app to EC2

CodePudding user response:

The simplest way I've found for EC2 is to SSH to the machine, then do a git pull from your repo, onto the machine.

  • Related