Skip to content

Instantly share code, notes, and snippets.

@ampersanda
Created February 14, 2018 16:18
Show Gist options
  • Save ampersanda/f1d62522b3f2f67d535f782657a590f8 to your computer and use it in GitHub Desktop.
Save ampersanda/f1d62522b3f2f67d535f782657a590f8 to your computer and use it in GitHub Desktop.
Project configuration for session-example
(defproject sessiontest "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.5.1"]
[compojure "1.1.8"]
[ring/ring-json "0.3.1"] ;; <= add this
]
:plugins [[lein-ring "0.8.10"]]
:ring {:handler sessiontest.handler/app}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment