如何使用 Flickzeug 从粘贴部署 WSGI 管道获取交互式回溯?

发布于 2024-08-23 00:36:27 字数 132 浏览 12 评论 0原文

我想使用 Flickzeug 通过将其添加到我的粘贴部署文件的管道来查看交互式回溯。以下不起作用。会怎样?

[pipeline]
pipeline =
    flickzeug
    myapp

I'd like to use Flickzeug to see interactive tracebacks by adding it to my paste deploy file's pipeline. The following doesn't work. What will?

[pipeline]
pipeline =
    flickzeug
    myapp

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

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

发布评论

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

评论(1

无声静候 2024-08-30 00:36:27

在应用程序声明中使用 filter-with 指令。

[app:main]
use = ...
...

filter-with = flickzeug


[filter:flickzeug]
use = egg:...#...
...

有关详细信息,请参阅 Paste Deploy 文档 的“筛选器组合”部分中的第一个示例。

Use the filter-with directive in your application declaration.

[app:main]
use = ...
...

filter-with = flickzeug


[filter:flickzeug]
use = egg:...#...
...

For more information, see the first example in the Filter Composition section of the Paste Deploy documentation.

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