-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
80 lines (70 loc) · 3.38 KB
/
project.clj
File metadata and controls
80 lines (70 loc) · 3.38 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
(defproject simplection "0.1.0-SNAPSHOT"
:description "The core of the Simplection Business Analytics Cloud."
:url "http://localhost:3000/"
:source-paths ["src/clj" "src_generated/clj"]
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.5.0"
:uberjar-name "uber.simplection.jar"
:auto-clean false
:clean-targets ^{:protect false} ["resources/public/js/out"]
:main simplection.server.core
:dependencies [[org.clojure/clojure "1.6.0"]
[compojure "1.3.1"]
[ring/ring-core "1.3.2"]
[jumblerg/ring.middleware.cors "1.0.1"]
[org.clojure/clojurescript "0.0-2755"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[cljs-http "0.1.21"]
[hiccup "1.0.5"]
[hiccups "0.3.0"]
[garden "1.2.5"]
[reagent "0.5.0-alpha"]
[reagent-utils "0.1.2"]
[http-kit "2.0.0"]
[figwheel "0.2.3-SNAPSHOT"]
[secretary "1.2.1"]
[jayq "2.5.4"]
[historian "1.0.7"]]
:plugins [[lein-pdo "0.1.1"]
[lein-ring "0.8.13"]
[lein-garden "0.2.5"]
[lein-cljsbuild "1.0.3"]
[lein-figwheel "0.2.3-SNAPSHOT"]]
:profiles {:dev
{:dependencies [[criterium "0.4.3"]
[midje "1.6.3"]
[javax.servlet/servlet-api "2.5"]]
:plugins [[com.keminglabs/cljx "0.5.0"]]}}
:aliases {"up" ["pdo" "run," "cljsbuild" "auto" "dev"]
"interactive" ["pdo" "run," "cljsbuild" "auto" "dev," "cljx" "auto," "garden" "auto," "figwheel"]}
:cljx {:builds [{:source-paths ["src/cljx"]
:output-path "src_generated/clj"
:rules :clj}
{:source-paths ["src/cljx"]
:output-path "src_generated/cljs"
:rules :cljs}]}
:garden {:builds [{:id "screen"
:source-paths ["src/css"]
:stylesheet app/app
:compiler {:output-to "resources/public/css/app.css"
:pretty-print? false}}]}
:cljsbuild {:builds [{:id "dev"
:source-paths ["src/cljs/simplection/templates"
"src/cljs/simplection/designer"
"src/cljs/simplection/views"
"src/cljs/simplection"
"src_generated/cljs"
"dev/simplection"]
:compiler {:output-to "resources/public/js/app.js"
:output-dir "resources/public/js/out"
:optimizations :none
:main simplection.dev
:asset-path "js/out"
:source-map true
:source-map-timestamp true
:cache-analysis true}}
{:id "prod"}]}
:figwheel {:http-server-root "public"
:server-port 3449
:css-dirs ["resources/public/css"]})