How To Push Nodejs To AppService Azure

neonexxa
Aug 10, 2022

--

  1. Setup Remote Repo
git clone url_repo repo
cd repo && npm i

2. Create App Service Azure

3. Update repo accordingly

git remote add azure https://<deploy_user_name>@<app_name>.scm.azurewebsites.net/<app_name>.git
git push azure

something like below

git remote add azure https://deployer@myappv1.scm.azurewebsites.net/myappv1.git
git push azure

You will be prompt for deployer password.

--

--

neonexxa

can be easily googled