简体   繁体   中英

How to write `app.yaml` file for Google App Engine app?

I registered a Google App Engine app and I have some files below:

  • /index.html
  • /tabs.css
  • /tab.js
  • /temp.py

How should I write the app.yaml file?

you should put your static files into some directory, for example staticdata then your app.yaml would look like:

application: temp
version: 1
runtime: python
api_version: 1

handlers:
- url: /staticdata
  static_dir: staticdata

- url: /.*
  script: temp.py

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM