Skip to content

Instantly share code, notes, and snippets.

@ioRekz
Created November 4, 2015 10:27
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 ioRekz/17ff586577cd930e69cb to your computer and use it in GitHub Desktop.
Save ioRekz/17ff586577cd930e69cb to your computer and use it in GitHub Desktop.
(defproject clr "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.7.0"]
[org.clojure/clojurescript "1.7.145"]
[org.clojure/core.async "0.2.371"]
[cljs-http "0.1.37"]
[cljsjs/moment "2.9.0-1"]
[reagent "0.5.0"]]
:plugins [[lein-cljsbuild "1.1.0"]
[lein-figwheel "0.4.1"]]
:source-paths ["src"]
:clean-targets ^{:protect false} ["resources/js/out" "resources/js/app.js" "target"]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src"]
:figwheel { :on-jsload "schedule-viewer.app/on-js-reload" }
:compiler {:main schedule-viewer.app
:asset-path "js/out"
:output-to "resources/js/app.js"
:output-dir "resources/js/out"
:source-map-timestamp true }}
{:id "min"
:source-paths ["src"]
:compiler {:output-to "resources/js/app.js"
:optimizations :advanced
:pretty-print false}}]}
:figwheel {
:http-server-root "" ;; default and assumes "resources"
;; :server-port 3449 ;; default
;; :server-ip "127.0.0.1"
:css-dirs ["resources/css"]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment