How should I write my Google App Engine app.yaml file? -
i registered google app engine app , have files below:
/index.html
/css/index.css
/js/index.js
/feedbacks/index.html
/feedbacks/css/index.css
/feedbacks/js/index.js
how should write app.yaml file?
thank you!
application: appname version: 1 runtime: python api_version: 1 handlers: - url: /favicon.ico static_files: img/favicon.ico upload: img/favicon.ico mime_type: image/x-icon - url: /css #your css folder static_dir: css - url: /scripts #your javascript folder static_dir: scripts - url: /img #your image folder static_dir: img - url: /.* script: your_script.py
Comments
Post a Comment