eudoxia0 / clack-errors

Error page middleware for Clack.
27 stars 3 forks source link

The document should be updated #7

Closed VitoVan closed 8 years ago

VitoVan commented 9 years ago

This is the demo:

(defun start ()
  (setf *handler*
        (clack:clackup
         (funcall clack-errors:*clack-error-middleware*
                  *app*
                  :debug t)
         :port 8000)))

(defun stop ()
  (clack:stop *handler*))

And this is the doc:

(clack:clackup
  (builder
    (clack-errors:<clack-error-middleware>
      :debug (getf (envy:config :myapp) :debug))
    *app*))

This almost kill me.

coseltech commented 8 years ago

I'd just like a confirmation whether this package is supposed to work with Lucerne.

VitoVan commented 8 years ago

@coseltech Seems the author has been disappeared long long ago.

eudoxia0 commented 8 years ago

Reports of my disappearance are greatly exaggerated.

@coseltech it's built into Lucerne already. The start function takes a debug keyword argument which enables it.