gcloud app deploy
.
错误:
File upload done.
ERROR: (gcloud.app.deploy) INVALID_ARGUMENT: This deployment has too many files. New versions are limited to 10000 files for this app.
- '@type': type.googleapis.com/google.rpc.BadRequest
fieldViolations:
- description: This deployment has too many files. New versions are limited to 10000
files for this app.
field: version.deployment.files[...]
我怀疑问题出在我的app.yaml文件上:
runtime: php55
api_version: 1
handlers:
# tell appengine where our static assets live
- url: /public
static_dir: public
(我想我至少漏掉了一些东西,告诉它不要上传供应商的东西,例如忽略)。
如何更新app.ymal文件以供项目部署?