You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the working version, the script name is "myapp2.py" and have "manager= Flask(name)" thus the WSGI_HANDLER value is "myapp2.manager".
I am not sure what should I put on the web.config of the not working version, currently the value is "manage.manager" where the script name is "manage.py" and I suspect "manager" is the startup line in the code.
My main line is as below:
if name == 'main':
manager.run(default_command="run")
I have manage simple flask app on windows IIS and it works. Sample web.config of normal flask app that work:
But when I try with this flask-restplus-boilerplate it is not working. The web.config of the not working flask app:
For the working version, the script name is "myapp2.py" and have "manager= Flask(name)" thus the WSGI_HANDLER value is "myapp2.manager".
I am not sure what should I put on the web.config of the not working version, currently the value is "manage.manager" where the script name is "manage.py" and I suspect "manager" is the startup line in the code.
My main line is as below:
if name == 'main':
manager.run(default_command="run")
run command as below:
@manager.command
def run():
app.run(host='127.0.0.1',port=7071)
Please help me in this Thank You.
The text was updated successfully, but these errors were encountered: