A simple web application boilerplate using Common Lisp
- Hunchentoot
- cl-who
To run the demo locally, clone the repo and load it in you LISP environment.
Eg: In SBCL
(ql:quickload :hello-world)
Then start the server
(initialize-application :port 3000)
To deploy your app in a PaaS like Heroku, use the following buildpack
heroku apps:create hello-world --buildpack https://gitlab.com/duncan-bayne/heroku-buildpack-common-lisp
git push heroku master
heroku open