[Solved] Deploy NodeJS app to Azure from VS Code


Local Git deployment from command line (or VS Code terminal):

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

If empty application already there use force flag:

git push azure master -f

Useful links deploying Bot Framework To Azure On Linux:

P.S. Could be outdated since 2017.

solved Deploy NodeJS app to Azure from VS Code