Created
August 8, 2013 20:50
-
-
Save bltavares/6188586 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defproject tabletop "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"} | |
:plugins [[lein-cljsbuild "0.3.2"] | |
[lein-ring "0.8.6"]] | |
:hooks [leiningen.cljsbuild] | |
:dependencies [[org.clojure/clojure "1.5.1"] | |
[compojure "1.1.5"] | |
[hiccup "1.0.4"]] | |
:source-paths ["src-clj"] | |
:cljsbuild { | |
:builds [{:source-paths ["src-cljs"] | |
:compiler {:output-to "resources/public/js/main.js" | |
:foreign-libs [{:file "http://github.com/DmitryBaranovskiy/raphael/raw/master/raphael-min.js" | |
:provides ["raphael.core"]}] | |
:optimizations :whitespace | |
:pretty-print true}}]} | |
:ring {:handler tabletop.routes/app}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment