0
當我嘗試在終端中運行Google App引擎中的我的helloworld.py腳本時,出現以下屏幕截圖錯誤。 #我的操作系統:Ubuntu.14# yaml_error上的Google App Engine錯誤
,這裏是我的文件的app.yaml 。
application: #My project Id.
version: 1
runtime: python27
threadsafe: true
api_version: 1
handlers:
- url: /static
static_dir: static
- url:/
static_files: static/index.html
upload: static/index\.html
secure: always
- url: /_ah/spi/.*
script: helloworld_api.app
libraries:
- name: endpoints
version: 1.0
問題是我不能在本地機器上部署我的代碼。 任何幫助將被讚賞。謝謝:) 我已經檢查在線Yaml解析器,它也顯示其有效。
你真的有在第一線的YAML一個#? – user2266449
只需從這裏複製一個:https://cloud.google.com/appengine/docs/python/config/appconfig,然後逐行替換它,問題很快就會顯現 – user2266449
@ user2266449我已經完成了,通過檢查在線yaml解析器。它顯示其有效。 –