我应该如何编写我的 Google App Engine app.yaml 文件?

Posted

技术标签:

【中文标题】我应该如何编写我的 Google App Engine app.yaml 文件?【英文标题】:How should I write my Google App Engine app.yaml file? 【发布时间】:2011-05-18 12:18:27 【问题描述】:

我注册了一个 Google App Engine 应用,我有一些文件如下:

/index.html

/css/index.css

/js/index.js

/feedbacks/index.html

/feedbacks/css/index.css

/feedbacks/js/index.js

app.yaml文件应该怎么写?

谢谢!

【问题讨论】:

【参考方案1】:
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

【讨论】:

【参考方案2】:

将您的前 3 个文件放入名为“static”的文件夹中

handlers:
-   url: /feedbacks/
    static_dir: feedbacks

-   url: /css/
    static_dir: static

-   url: /js/
    static_dir: static

-   url: /.*
    script: main.py

在您的 ma​​in.py

class IndexHandler(webapp.RequestHandler):
    def get(self):
        self.redirect('static/index.html')


def main():
    application = webapp.WSGIApplication([
            ('/index.html', IndexHandler),
        ], debug=True)
    run_wsgi_app(application)

这样写不好, 但这会解决你的问题。

【讨论】:

感谢您的回复!大熊。

以上是关于我应该如何编写我的 Google App Engine app.yaml 文件?的主要内容,如果未能解决你的问题,请参考以下文章

Google App Engine 祖先查询

我应该将我的 Nuxt 应用程序直接部署到 Google App Engine 还是应该在我的代码存在于存储库中的地方使用 Gitlab CI/CD?

如何在 Google App Engine 中解析 JSON?

如何在 App.Config 中编写 URI 字符串

将Google App Engine与Javascript客户端连接

如何在 Python 中编写 if-else 条件(Google App Engine)