Skip to content

Instantly share code, notes, and snippets.

Created March 22, 2014 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/9711155 to your computer and use it in GitHub Desktop.
Save anonymous/9711155 to your computer and use it in GitHub Desktop.
(defproject data_analyzer "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:main analyzer.core
:source-paths ["src/clj" "src/cljs"]
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/data.json "0.2.4"]
[incanter/incanter "1.5.4"]
[ring/ring-core "1.2.1"]
[ring/ring-jetty-adapter "1.2.1"]
[compojure "1.1.1"]
[hiccup "1.0.0"]
[org.clojure/java.jdbc "0.3.3"]
[postgresql/postgresql "9.1-901.jdbc4"]
[clj-time "0.6.0"]]
:plugins [[lein-ring "0.7.1"]
[lein-cljsbuild "1.0.0"]]
:cljsbuild {:builds [{
:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/js/modern.js"
:optimizations :whitespace
:pretty-print true
}
}]}
:ring {:handler web-app.core/app})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment