Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到消息:
'server' parameter not specified in *.py
做之后:
appcfg.py update *.py
在终端。当我在应用程序的仪表板中查看当前版本列时显示“未部署”。
当您从终端运行命令时,您希望指向appcfg.py包含应用程序文件的文件夹。此文件夹将包含您的app.yaml. 假设调用my_project了该文件夹,您将从应用程序上方的文件夹中执行以下操作:
appcfg.py
app.yaml
my_project
python appcfg.py update my_project
这里的区别在于您将整个应用程序提供给appcfg,而不是任何.py文件(如您所见将不起作用)。
appcfg
.py