Troy Deck
Troy Deck
I am just starting with Flask-Script and am experiencing the same issue. It looks like runserver calls `app.run` like this: ``` app.run(host=host, port=port, debug=use_debugger, use_debugger=use_debugger, use_reloader=use_reloader, threaded=threaded, processes=processes, passthrough_errors=passthrough_errors, **self.server_options)...
In case anyone else lands on this, I've found a workaround that works in the specific case of `SERVER_NAME`, which is simply to make my own runserver command that goes...