-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
146 lines (120 loc) · 6.61 KB
/
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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
(defproject webrtclojure "0.1.0"
:description "Real time JSON data communication between browsers."
:url "https://github.com/Rovanion/WebRTClojure"
:license {:name "AGPLv3"
:url "http://www.gnu.org/licenses/agpl-3.0.html"}
:dependencies
[[org.clojure/clojure "1.8.0"]
[org.clojure/tools.reader "0.10.0"] ; Dependency issue between sente and ring.
[org.clojure/core.cache "0.6.4"] ; Version requiered by figwheel.
[ring-server "0.4.0"] ; Library for starting a web server.
[ring/ring-core "1.4.0"] ; HTTP abstraction library.
[ring/ring-defaults "0.2.0"] ; Middleware collection.
[yogthos/config "0.8"] ; Managing environment configs.
[compojure "1.5.0"] ; Routing.
[http-kit "2.1.19"] ; Our web server.
[korma "0.4.2"] ; SQL abstraction.
[org.postgresql/postgresql "9.4.1208"]
[ragtime "0.5.3"] ; Database migrations.
[buddy/buddy-core "0.12.1"] ; Authorization and authentication.
[buddy/buddy-hashers "0.14.0"] ; Hash functions.
[heroku-database-url-to-jdbc "0.2.2"];Helper function heroku<->korma.
[org.clojure/clojurescript "1.8.51"
:scope "provided"]
[reagent "0.5.1" ; React abstraction.
:exclusions [org.clojure/tools.reader]]
[reagent-forms "0.5.22"]
[reagent-utils "0.1.7"]
[secretary "1.2.3"] ; Client side routing.
[venantius/accountant "0.1.7"] ; Managing the URL bar in the browser.
[com.taoensso/sente "1.8.1"] ; WebSockets manager.
[cljs-ajax "0.5.4"] ; Testing purposes only.
]
:plugins [[lein-environ "1.0.2"]
[lein-cljsbuild "1.1.1"]
[lein-asset-minifier "0.2.7"
:exclusions [org.clojure/clojure]]]
:ring {:handler webrtclojure.handler/app
:uberwar-name "webrtclojure.war"}
:min-lein-version "2.5.0"
:uberjar-name "webrtclojure.jar"
:main webrtclojure.server
:clean-targets ^{:protect false}
[:target-path
[:cljsbuild :builds :app :compiler :output-dir]
[:cljsbuild :builds :app :compiler :output-to]]
:source-paths ["src/clj" "src/cljc"]
:test-paths ["test/clj" "test/cljc"]
:resource-paths ["resources" "target/cljsbuild"]
:aliases {"migrate" ["run" "-m" "webrtclojure.database/migrate"]
"rollback" ["run" "-m" "webrtclojure.database/rollback"]}
:minify-assets
{:assets
{"resources/public/css/site.min.css" "resources/public/css/site.css"}}
:cljsbuild {:builds {:app {:source-paths ["src/cljs" "src/cljc"]
:compiler {:output-to "target/cljsbuild/public/js/app.js"
:output-dir "target/cljsbuild/public/js/out"
:asset-path "/js/out"
:optimizations :none
:pretty-print true}}}}
:profiles {:dev {:repl-options {:init-ns webrtclojure.repl
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:dependencies [[ring/ring-mock "0.3.0"]
[ring/ring-devel "1.4.0"]
[prone "1.1.1"]
[lein-figwheel "0.5.2"
:exclusions [org.clojure/core.memoize
ring/ring-core
org.clojure/clojure
org.ow2.asm/asm-all
org.clojure/data.priority-map
org.clojure/tools.reader
org.clojure/clojurescript
org.clojure/core.async
org.clojure/tools.analyzer.jvm]]
[org.clojure/tools.nrepl "0.2.12"]
[com.cemerick/piggieback "0.2.1"]
[figwheel-sidecar "0.5.3-1"]
[pjstadig/humane-test-output "0.8.0"]
]
:source-paths ["env/dev/clj"]
:plugins [[lein-figwheel "0.5.2"
:exclusions [org.clojure/core.memoize
ring/ring-core
org.clojure/clojure
org.ow2.asm/asm-all
org.clojure/data.priority-map
org.clojure/tools.reader
org.clojure/clojurescript
org.clojure/core.async
org.clojure/tools.analyzer.jvm]]
]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]
:figwheel {:http-server-root "public"
:server-port 3449
:nrepl-port 7002
:nrepl-middleware ["cemerick.piggieback/wrap-cljs-repl"
]
:css-dirs ["resources/public/css"]
:ring-handler webrtclojure.handler/app}
:env {:dev true}
:cljsbuild {:builds {:app {:source-paths ["env/dev/cljs"]
:compiler
{:main "webrtclojure.dev"
:optimizations :none
:source-map true}}
}
}}
:uberjar {:hooks [minify-assets.plugin/hooks]
:source-paths ["env/prod/clj"]
:prep-tasks ["compile" ["cljsbuild" "once"]]
:env {:production true}
:aot :all
:omit-source true
:cljsbuild {:jar true
:builds {:app
{:source-paths ["env/prod/cljs"]
:compiler
{:optimizations :advanced
:pretty-print false}}}}}})