Created
October 3, 2014 04:19
-
-
Save mattdeboard/744d597fa5d155d4d94f 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 kanfold "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"} | |
:source-paths ["src/clj" "src/cljs"] | |
:dependencies [[org.clojure/clojure "1.6.0"] | |
[org.clojure/clojurescript "0.0-2322"] | |
[ring "1.2.2"] | |
[compojure "1.1.8"] | |
[enlive "1.1.5"] | |
[om "0.7.3"] | |
[racehub/om-bootstrap "0.2.8"] | |
[figwheel "0.1.3-SNAPSHOT"]] | |
:profiles {:dev | |
{:repl-options {:init-ns kanfold.server} | |
:plugins [[com.cemerick/austin "0.1.5-SNAPSHOT"] | |
[lein-cljsbuild "1.0.3"] | |
[lein-figwheel "0.1.2-SNAPSHOT"]] | |
:cljsbuild {:builds | |
[{:source-paths ["src/cljs"] | |
:compiler {:output-to "resources/public/app.js" | |
:output-dir "resources/public/out" | |
;;:optimizations :simple | |
:optimizations :none | |
:pretty-print true | |
:source-map true}}]} | |
:figwheel {:http-server-root "public" ;; resources/public | |
:port 3449 }}}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment