【发布时间】:2015-06-09 23:59:45
【问题描述】:
您将如何将angular-fullstack Yeoman 生成器的输出部署到 Azure?生成器产生这样的输出,即两个文件夹 - client 和 server。
├── client
│ ├── app - All of our app specific components go in here
│ ├── assets - Custom assets: fonts, images, etc…
│ ├── components - Our reusable components, non-specific to to our app
│
├── e2e - Our protractor end to end tests
│
└── server
├── api - Our apps server api
├── auth - For handling authentication with different auth strategies
├── components - Our reusable or app-wide components
├── config - Where we do the bulk of our apps configuration
│ └── local.env.js - Keep our environment variables out of source control
│ └── environment - Configuration specific to the node environment
└── views - Server rendered views
我想将它部署到 Microsoft Azure,最好使用 Git deploy。我该怎么办?
更新
这是 Azure 中的部署文件结构。
【问题讨论】:
标签: angularjs git azure yeoman azure-web-app-service