Created
April 6, 2019 15:29
-
-
Save manandearth/d1342de71dd31255ca74d65e65d50953 to your computer and use it in GitHub Desktop.
hirundia
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 hirundia "0.0.1-SNAPSHOT" | |
:description "" | |
:url "" | |
:license {:name "Eclipse Public License" | |
:url "http://www.eclipse.org/legal/epl-v10.html"} | |
:dependencies [ | |
#_[amazonica "0.3.125"] | |
#_[background-processing "0.1.0-SNAPSHOT"] | |
[better-cond "1.0.1"] | |
[ch.qos.logback/logback-classic "1.1.8" :exclusions [org.slf4j/slf4j-api]] | |
[com.grzm/component.pedestal "0.1.7"] | |
[com.mchange/c3p0 "0.9.5.2"] | |
[com.stuartsierra/component "0.4.0"] | |
[expound "0.6.0"] | |
[honeysql "0.9.4"] | |
[io.pedestal/pedestal.jetty "0.5.3"] | |
[io.pedestal/pedestal.service "0.5.3"] | |
[juxt.modular/postgres "0.0.1-SNAPSHOT"] | |
[org.clojure/clojure "1.10.0"] | |
[org.clojure/clojurescript "1.10.520"] | |
[org.clojure/core.async "0.4.474"] | |
[org.clojure/java.jdbc "0.7.6"] | |
[org.clojure/tools.logging "0.4.0"] | |
[nrepl "0.6.0"] | |
[org.slf4j/jcl-over-slf4j "1.7.22"] | |
[org.slf4j/jul-to-slf4j "1.7.22"] | |
[org.slf4j/log4j-over-slf4j "1.7.22"] | |
[prismatic/schema "1.1.9"] | |
[spec-coerce "1.0.0-alpha6"] | |
[clj-postgresql "0.7.0"] | |
[clojure.java-time "0.3.2"] | |
[hiccup "1.0.5"] | |
[hiccup-table "0.2.0"] | |
[buddy/buddy-auth "2.1.0"] | |
[metasoarous/oz "1.6.0-alpha2"] | |
[reagent "0.7.0"] | |
[re-frame "0.10.5"] | |
[cider/piggieback "0.4.0"]] | |
:repl-options {:port 41234} | |
:min-lein-version "2.0.0" | |
:resource-paths ["config" "resources"] | |
:plugins [[cider/cider-nrepl "0.21.1"] | |
[lein-cljsbuild "1.1.7"]] | |
;;source-paths ["src/clj" "src/cljs"] | |
:clean-targets ^{:protect false} ["resources/public/js/compiled" "target" | |
;"resources/public/css" | |
] | |
:figwheel {:css-dirs ["resources/public/css"]} | |
:profiles {:dev | |
{:dependencies [[io.pedestal/pedestal.service-tools "0.5.3"] | |
[com.stuartsierra/component.repl "0.2.0"] | |
[org.clojure/tools.namespace "0.3.0-alpha4"] | |
[org.clojure/tools.nrepl "0.2.13" :exclusions [org.clojure/clojure]] | |
[figwheel-sidecar "0.5.18"] | |
[cider/piggieback "0.4.0"]] | |
:plugins [[com.bhauman/figwheel-main "0.2.0"]] | |
:source-paths ["dev" "src/clj" "src/cljs"] | |
:repl-options {:init-ns user | |
:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}} | |
:uberjar {:source-paths ["env/prod/clj"] | |
:omit-source true | |
:main hirundia.server | |
:aot [hirundia.server] | |
:uberjar-name "hirundia.jar" | |
:prep-tasks [["cljsbuild" "once" "min"] "compile"]} | |
} | |
:cljsbuild | |
{:builds | |
[{:id "dev" | |
:source-paths ["src/cljs"] | |
:figwheel {:on-jsload "hirundia.core/mount-root"} | |
:compiler {:main hirundia.core | |
:output-to "resources/public/js/compiled/app.js" | |
:output-dir "resources/public/js/compiled/out" | |
:asset-path "js/compiled/out" | |
:source-map-timestamp true | |
:external-config {:devtools/config {:features-to-install :all}} | |
}} | |
{:id "min" | |
:source-paths ["src/cljs"] | |
:compiler {:main hirundia.core | |
:output-to "resources/public/js/compiled/app.js" | |
:optimizations :advanced | |
:closure-defines {goog.DEBUG false} | |
:pretty-print false}} | |
]} | |
:main ^{:skip-aot true} hirundia.server) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment