我一直在尝试使用 Windows 命令提示符上传 python Google app engine 文件夹。我在文件夹中有 app.yaml 和 python 文件。但是当我在命令提示符中传递以下命令时:
appcfg.py --oauth2 update C:/Path/to/the/folder
我得到这个错误。
appcfg.py: error: Directory does not contain an Project.yaml configuration file.
我在哪里错了,我应该如何继续?
这是我的 app.yaml 文件:
application: myappid
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /.*
script: sampleapp.app
libraries:
- name: lxml
version: "latest"