如何处理静态文件写app.yaml?

发布于 2024-10-18 13:30:15 字数 308 浏览 0 评论 0原文

可能的重复:
如何编写yaml文件

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

/index.html

/tabs.css

/tab.js

/temp.py

app.yaml 文件应该如何编写?

Possible Duplicate:
how to write yaml file

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟沫凡尘 2024-10-25 13:30:15
application: ***your-app-name***
version: 1
runtime: python
api_version: 1

handlers:
- url: /(robots\.txt|favicon\.ico)
  static_files: public/\1
  upload: public/(.*)

- url: /public
  static_dir: public

- url: /.*
  script: main.py

在应用程序的根目录下创建一个 pubic 目录,并将静态文件放入其中。
您可以将它们包含在 HTML 文件中,如下所示:

<link rel="stylesheet" href="/public/style.css">
application: ***your-app-name***
version: 1
runtime: python
api_version: 1

handlers:
- url: /(robots\.txt|favicon\.ico)
  static_files: public/\1
  upload: public/(.*)

- url: /public
  static_dir: public

- url: /.*
  script: main.py

Create a pubic directory under you app's root directory and put your static files in there.
You can include them in your HTML files like this:

<link rel="stylesheet" href="/public/style.css">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文