A simple, lightweight blogging application, written in Clojure.
Download the source code, then:
- From the top-level directory, type: lein deps
- Create a postgresql database called "blogjr", and a role "blogjr" that has full permissions on that database.
From the top level directory, start a REPL with: "lein repl", then:
- (use 'blogjr.db)
- (create-posts)
- (create-users)
- (create-comments)
Finally, exit the REPL and type:
- lein ring server
To start up the blog!
Distributed under the Eclipse Public License, the same as Clojure.