Shared Lisp on Herek with Hunchentoot?

Has anyone been able to successfully deploy an application to Heroku with Heroku Common Lisp Buildpack using Hunchentoot?

I get

! Heroku push rejected, no Cedar-supported app detected 

and I'm not sure if I am doing something wrong or if it is not yet supported

UPDATE:

The above error is caused by the absence of the heroku-setup.lisp file. Heroku now accepts push, but trying to access the website gives an error.

Mike Travers answered the question: " No, he does not currently support Hunchentoot, but it’s easy to add that. "

I think now the question remains, who can add this functionality?

+8
common-lisp heroku hunchentoot
source share
2 answers

jsmpereira added sbcl / hunchentoot features. https://github.com/jsmpereira/heroku-cl-example

+6
source share

See also https://github.com/bhyde/heroku-buildpack-ccl64-example1 , which is an example of this using buildapp, which provides ccl64 + quicklisp + asdf

+3
source share

All Articles