I\'m currently working through the book Flask Web Development, Developing Web Applications with Python and am currently having some issues determining where I should place t
After a bit of troubling shooting I was able to find a solution to my problem but was unfortunately unable to isolate exactly what went wrong.
Basically I went through the process of rebuilding my test project from scratch in VS2015 (Python -> Azure Cloud Service -> Flask Web Role) and was somehow this time able to get a working solution using the 7a test project with it running in the Azure Emulator followed by successfully publishing it as an Azure Web App.
I believe my problem could have resulted from one of the following issues:
I also changed the base of the manage.py file to:
if __name__ == '__main__':
app.run()
Which may have helped as well.
I hope this helps out anyone else who may run into a similar issue.