我正在尝试部署一个简单的 Web 应用程序,并且正在使用命令行waitress-serve --call
命令。但是每次,命令都会立即返回1. Malformed application 'name_of_project_here'
。
这是我在 python 中的烧瓶网络应用程序:
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('base.html')
if __name__ == '__main__':
app.run(debug = True)
我运行的命令只是
waitress-serve --call "name_of_project"
我确实尝试查看文档,发现错误发生的位置,但找不到发生错误的原因的解释。格式错误的应用程序是什么意思?