I'm trying to deploy python flask to azure but can not get it through. I create a api service on Azure
Here is the url for my api, and it serves with python 3 https://textclassifier.azurewebsites.net/
then I created a default flask project on visual studio, without changing any code, I click publish directly. Chosen the the app service I created from portal, publishing shows successfully in VS Output:
Adding file (TextClassifier\TestFlask__init__.py). Adding ACLs for path (TextClassifier) Adding ACLs for path (TextClassifier) Publish Succeeded. Web App was published successfully http://textclassifier.azurewebsites.net/ ========== Build: 0 succeeded, 0 failed, 1 up-to-date, 0 skipped ========== ========== Publish: 1 succeeded, 0 failed, 0 skipped ==========
However, when I access url https://textclassifier.azurewebsites.net/home browers shows : " The resource you are looking for has been removed, had its name changed, or is temporarily unavailable".
I checked that /home is routed to a controller
Can anyone help me out, I have been stuck for days.


