Skip to content

Instantly share code, notes, and snippets.

@sgrove
Created November 17, 2012 23: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 sgrove/0c462cf39fce5b6e970c to your computer and use it in GitHub Desktop.
Save sgrove/0c462cf39fce5b6e970c to your computer and use it in GitHub Desktop.
(defproject jikken "0.1.0-SNAPSHOT"
:plugins [[lein-cljsbuild "0.2.9"]
[lein-swank "1.4.4"]]
:description "FIXME: write this!"
:dependencies [[org.clojure/clojure "1.4.0"]
[domina "1.0.1"]
[fetch "0.1.0-alpha2"]
[crate "0.2.1"]
[noir "1.3.0-beta3"]
[com.datomic/datomic-free "0.8.3599"]]
:min-lein-version "2.0.0"
:repl-options {:nrepl-middleware
[cemerick.piggieback/wrap-cljs-repl]}
:profiles {:production
{:hooks [leiningen.cljsbuild]}}
:cljsbuild {:builds
{:dev
{:source-path "src/cljs"
:compiler
{:output-to "resources/public/js/bin-debug/main.js"
:output-dir "resources/public/js/bin-debug"
:optimizations :whitespace
:pretty-print true}}
:prod
{:source-path "src/cljs"
:compiler
{:output-to "resources/public/js/bin/main.js"
:output-dir "resources/public/js/bin"
:optimizations :advanced}}}
}
:main jikken.server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment