-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
25 lines (25 loc) · 988 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(defproject de.viaboxx.flurfunk/flurfunk-web "1.1-SNAPSHOT"
:description "Web interface for Flurfunk"
:source-paths ["src/clj"]
:cljs-source-path "src/cljs"
:dependencies [[org.clojure/clojure "1.3.0"]
[org.clojure/clojurescript "0.0-993"]
[compojure "1.0.2"]
[hiccup "0.3.8"]
[ring/ring-jetty-adapter "0.3.11"]
[clj-http "0.3.6"]]
:plugins [[lein-cljsbuild "0.1.6"]
[lein-ring "0.6.5"]]
:hooks [leiningen.cljsbuild]
:cljsbuild
{:builds {:prod
{:source-path "src/cljs"
:compiler {:output-to "resources/public/flurfunk.js"
:optimizations :advanced}}
:dev
{:source-path "src/cljs"
:compiler {:output-to "resources/public/flurfunk-dev.js"
:pretty-print true}}}}
:ring {:handler flurfunk.web.routes/app}
:main flurfunk.web.jetty
:uberjar-name "flurfunk-web.jar")