This is the initial exercise app from the book Web Development with Clojure by Dmitri Sotnikov. This mainly sticks to the code in the book, but I have made a few customisations to my liking.
One thing to note is that the clojure.java.jdbc
API changed quite
significantly between version 0.2 (which is used in the book), and version
0.3 (which is current as of this writing), but the old API is still
available in the clojure.java.jdbc.deprecated
namespace, which is what
I have referenced in the guestbook.models
namespace.
You will need Leiningen 1.7.0 or above installed.
To start a web server for the application, run:
lein ring server
Copyright © 2014 Tony Kemp