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