-- 
http://parenteses.org/mario

-- 
You received this message because you are subscribed to the Google Groups 
"Lisp-br" group.
To post to this group, send email to lisp-br@googlegroups.com.
To unsubscribe from this group, send email to 
lisp-br+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/lisp-br?hl=en.

--- Begin Message ---
A few days ago I put together a buildpack that allows one to run Chicken
apps on Heroku; figured I'd share it here in case someone else finds it
useful.

A "buildpack", for the tragically unhip, is just a handful of scripts to
bootstrap an environment for a Heroku process. This one installs Chicken
4.7.0 and runs a standard chicken-install for your program -- apps can
be written just like eggs, with setup- and meta-files per usual.

Defining a default command to run once everything is installed is the
only weird part; Heroku uses a file called a Procfile[1] to specify
processes, which you can use to start e.g. an awful app on the correct
port for the instance:

    web: awful --port=$PORT example.scm

If no Procfile is present, the buildpack will try to run a file called
`run.scm` in your application's root. This may or may not be a good
default -- I'm open to suggestions.

chickadee, pastiche and the handful of awful apps that I tried worked
without any real configuration; there's an example in the README. The
repository is located here:

    https://github.com/evhan/heroku-buildpack-chicken

Hopefully this'll help someone get some hot Chicken-on-cloud action...

Cheers,

Evan

[1]: https://devcenter.heroku.com/articles/procfile

_______________________________________________
Chicken-users mailing list
chicken-us...@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


--- End Message ---

Responder a