Skip to content

Instantly share code, notes, and snippets.

@linuxsoares
Created January 27, 2018 12:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxsoares/d35baced446e1a86b652ebdad9494de9 to your computer and use it in GitHub Desktop.
Save linuxsoares/d35baced446e1a86b652ebdad9494de9 to your computer and use it in GitHub Desktop.
(defproject todo "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.8.0"]
[compojure "1.5.1"]
[ring/ring-core "1.3.2"]
[ring/ring-json "0.3.1"]
[korma "0.3.0-RC5"]
[mysql/mysql-connector-java "5.1.6"]
[ring/ring-defaults "0.2.1"]]
:plugins [[lein-ring "0.9.7"]]
:ring {:handler todo.handler/app}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.0"]]}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment