从VS Code部署NodeJS应用程序到Azure

时间:2017-08-11 00:06:42

标签: node.js linux azure deployment visual-studio-code

在VS Code(Linux)中创建简单的nodejs应用程序。还在Azure中创建了NodeJS应用程序。如何将应用程序从VS Code部署到此Azure应用程序?已安装AZ CLI。我已经下载了一些MyApp.PublishSettings文件,但它似乎在VS而不是VS Code中使用。那么使用或不使用git(github)进行部署的最佳方法是什么?

1 个答案:

答案 0 :(得分:-2)

从命令行(或VS Code终端)部署本地Git:

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

如果空应用程序已经使用force标志:

git push azure master -f

在Linux上将Bot Framework部署到Azure的有用链接: