2016-02-27 64 views

回答

0

根據我的經驗,假設您通過從Azure舊門戶上的庫創建Flask模板或從Azure新門戶上的市場包創建使用Flask的Web應用程序,以便Flask的模板項目名爲FlaskWebProject將通過以下方式創建該webapp。您可以在Kudu控制檯http://<your-webapp-name>.scm.azurewebsites.net/DebugConsole的路徑\site\wwwroot上看到模板項目。

enter image description here

因此,你需要支付的項目,您的項目通過的Git叫同一個名字。您的項目目錄必須位於Git存儲庫的根路徑中。

The root path of Git repo 
|- FlaskWebProject 
    |- ... 

然後,當您通過Azure上的連續部署來拉動git repo時,它將覆蓋舊項目。

如果使用Visual Studio作爲默認IDE,可以參考文檔https://azure.microsoft.com/en-us/documentation/articles/web-sites-python-create-deploy-flask-app/