Skip to content

Commit

Permalink
Update readme.
Browse files Browse the repository at this point in the history
Remove some white space.
  • Loading branch information
jsmpereira committed Mar 15, 2012
1 parent c2706ca commit e16163a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
10 changes: 9 additions & 1 deletion README.md
Expand Up @@ -2,6 +2,8 @@

This project is an example of how to use [my fork](https://github.com/jsmpereira/heroku-buildpack-cl) of the [Heroku Common Lisp Buildpack](https://github.com/mtravers/heroku-buildpack-cl). See the buildpack repository for more information and credits.

### This is the Hunchentoot branch.

## Instructions:
First, get yourself set up with a [Heroku account and tools](http://devcenter.heroku.com/articles/quickstart).

Expand All @@ -25,5 +27,11 @@ That's it!

## More details:

The file heroku-setup.lisp gets loaded at compile time, and needs to load any Lisp files or packages required.
There are currently 2 branches. *Master* has Huchentoot specific code and *aserve* has AllegroServe specific code.
Currently https://github.com/jsmpereira/heroku-buildpack-cl let's you run Hunchentoot with SBCL and CCL and AllegroServe(portableaserve) with CCL.

There is a pending issue with [acl-compat](https://github.com/mtravers/portableaserve/tree/master/acl-compat) bundled with portableaserve preventing use with SBCL. Look [here](https://github.com/mtravers/wuwei/issues/10) for more information.

The file heroku-setup.lisp gets loaded at compile time, and needs to load any Lisp files or packages required.

Thanks to [Mike Travers](https://github.com/mtravers) for getting Common Lisp on Heroku.
5 changes: 1 addition & 4 deletions src/hello-world.lisp
Expand Up @@ -2,7 +2,4 @@

(hunchentoot:define-easy-handler (hello-sbcl :uri "/") (name)
(setf (hunchentoot:content-type*) "text/plain")
(format nil "Hey~@[ ~A~]! ~A ~A, Hunchentoot ~A" name (lisp-implementation-type) (lisp-implementation-version) hunchentoot::*hunchentoot-version*))



(format nil "Hey~@[ ~A~]! ~A ~A, Hunchentoot ~A" name (lisp-implementation-type) (lisp-implementation-version) hunchentoot::*hunchentoot-version*))

0 comments on commit e16163a

Please sign in to comment.