0

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
joeforker
  • 40,459
  • 37
  • 151
  • 246

1 Answers1

0

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.

amcgregor
  • 1,228
  • 12
  • 29
  • The problem I was having is that Flickzeug does not define a paste.filter_factory out of the box, so it doesn't "just work" in a [filter:...] section. – joeforker Mar 03 '10 at 05:34
  • You can create your own paste.filter_factory entry point, referencing the middleware in the Flickzeug package. – amcgregor Mar 05 '10 at 06:02