Skip to content

Instantly share code, notes, and snippets.

@tomjakubowski
Created December 15, 2013 04:21
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 tomjakubowski/8ecc91adea9245c22d0a to your computer and use it in GitHub Desktop.
Save tomjakubowski/8ecc91adea9245c22d0a to your computer and use it in GitHub Desktop.
(defproject screwing-around "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-1896"]
[ring "1.1.8"]]
:plugins [[lein-cljsbuild "0.3.2"]
[lein-ring "0.8.3"]]
:hooks [leiningen.cljsbuild]
:source-paths ["src/clj"]
:cljsbuild {
:builds {
:main {
:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/js/cljs.js"
:optimizations :simple
:pretty-print true}
:jar true}}}
:main screwing-around.server
:ring {:handler screwing-around.server/app})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment