lucerne icon indicating copy to clipboard operation
lucerne copied to clipboard

A web framework for Common Lisp, built on Clack

Results 10 lucerne issues
Sort by recently updated
recently updated
newest added

It looks like the new version of [http-body](https://github.com/fukamachi/http-body) (http-body-20190813-git) has broken Lucerne. It appears that the commits since [August 10th are the culprit](https://github.com/fukamachi/http-body/commits/master). With the latest version of quicklisp, running...

bug

Building with SBCL 2.1.6 / ASDF 3.3.5 for quicklisp dist creation. Trying to build commit id 7037f2c20d5bbf7a789bd9fe2e85eb1ed3ef247c *lucerne-auth* fails to build with the following error: ``` Unhandled ASDF/FIND-COMPONENT:MISSING-DEPENDENCY in thread...

Hi! Is this project ready for production usage? I mean how finished and stable is the api. I'm choosing a framework for my web service. Can you recommend lucerne?

It will be useful if `respond` can be used to set custom HTTP headers. At the moment I have to use a custom respond-like function everywhere I need to return...

enhancement

I'm going to delete clack-v1-compat in the near future at https://github.com/fukamachi/clack/pull/141. The reason is that I found a failed test in clack-v1-compat, and I couldn't find easy way to fix...

If I write a new defview with the @route reader macro, it is not added to the routing table upon C-c C-c. However, If I restart my Lisp image, it's...

The only way I manage to set cookies is by doing this: ``` lisp (defview page () (list 200 (list :content-type "text" :set-cookie "sessionToken=abc123") (list "HI"))) ``` The session middleware...

enhancement

As opposed to using the static file middleware.

enhancement

Ref https://github.com/fukamachi/clack/issues/129

enhancement

I tried running the test suite on CCL because I can't get sub-apps to work. The tests do not run. ``` Bad interval for sequence operation on NIL : start...

bug