Skip to content

Instantly share code, notes, and snippets.

/project.clj Secret

Created June 15, 2014 04:48
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 anonymous/70c4e04b84c1197e756e to your computer and use it in GitHub Desktop.
Save anonymous/70c4e04b84c1197e756e to your computer and use it in GitHub Desktop.
(defproject wc2014 "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2227"]
[datomic-schema "1.1.0"]
[com.datomic/datomic-free "0.9.4699"]
[instaparse "1.3.2"]
[cljs-ajax "0.2.6"]
[me.raynes/laser "2.0.0-SNAPSHOT"]
[compojure "1.1.8"]
[ring "1.2.1"]
[clj-time "0.7.0"]
[jarohen/chime "0.1.6"]
[ring/ring-core "1.3.0"]
[ring/ring-jetty-adapter "1.3.0"]
[cljs-ajax "0.2.6"]
[om "0.6.4"]
[sablono "0.2.17"]
[com.facebook/react "0.9.0.2"]]
:profiles
{:dev {:source-paths ["dev-resources/tools/http" "dev-resources/tools/repl"]
:resources-paths ["dev-resources"]
:dependencies [[devcards "0.1.0-SNAPSHOT"]
[hickory "0.5.3"]]
:plugins [[com.cemerick/austin "0.1.4"]
[lein-cljsbuild "1.0.3"]
[lein-figwheel "0.1.3-SNAPSHOT"]]
:injections [(require '[ring.server :as http :refer [run]]
'cemerick.austin.repls)
(defn browser-repl-env []
(reset! cemerick.austin.repls/browser-repl-env
(cemerick.austin/repl-env)))
(defn browser-repl []
(cemerick.austin.repls/cljs-repl
(browser-repl-env)))]}}
:source-paths ["src"]
:cljsbuild {:builds [{:id "devcards"
:notify-command ["growlnotify" "-m"]
:source-paths ["devcards_src" "src"]
:compiler
{:output-to "resources/public/devcards/js/compiled/wc2014_devcards.js"
:output-dir "resources/public/devcards/js/compiled/out"
:optimizations :none
:pretty-print true
:source-map true}}
#_{:id "app"
:source-paths ["src"]
:notify-command ["growlnotify" "-m"]
:compiler {:output-to "resources/public/js/compiled/wc2014.js"
:output-dir "resources/public/js/compiled/out"
:optimizations :none
:source-map true}}]}
:figwheel {:css-dirs ["resources/public/css"]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment