-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
68 lines (62 loc) · 3.11 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
(defproject slacky "0.1.0-SNAPSHOT"
:description "Memes-as-a-Service"
:url "https://github.com/oliyh/slacky"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/core.async "0.3.443"]
[pedestal-api "0.3.4"]
[io.pedestal/pedestal.service "0.5.7"]
[io.pedestal/pedestal.jetty "0.5.7"]
[angel-interceptor "0.3.0"]
[ch.qos.logback/logback-classic "1.2.3" :exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "1.7.25"]
[org.slf4j/jcl-over-slf4j "1.7.25"]
[org.slf4j/log4j-over-slf4j "1.7.25"]
[org.clojure/tools.logging "0.4.0"]
[clj-http "3.7.0"]
[cheshire "5.8.0"]
[org.clojure/core.memoize "0.5.9"]
;; web
[hiccup "1.0.5"]
[enlive "1.1.6"]
;; persistence
[org.clojure/java.jdbc "0.7.1"]
[org.postgresql/postgresql "42.1.4"]
[com.h2database/h2 "1.4.196"]
[com.mchange/c3p0 "0.9.5.2"]
[joplin.core "0.3.10"]
[joplin.jdbc "0.3.10"]
[honeysql "0.9.1"]]
:main ^:skip-aot slacky.server
:min-lein-version "2.0.0"
:target-path "target/%s"
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:resource-paths ["config", "resources", "migrators"]
:profiles {:uberjar {:aot :all
:prep-tasks ["javac" "compile"
["shell" "./install-memecaptain.sh"]
["with-profile" "dev" "fig:min"]]}
:dev {:source-paths ["dev" "src/cljs"]
:dependencies [[org.clojure/tools.namespace "0.2.11"]
[clj-http-fake "1.0.3"]
[org.clojars.runa/conjure "2.2.0"]
;; cljs
[org.clojure/clojurescript "1.10.597"]
[binaryage/devtools "1.0.0"]
[com.bhauman/figwheel-main "0.2.1"]
[cider/piggieback "0.4.1"]
[org.clojure/tools.nrepl "0.2.13"]
[secretary "1.2.3"]
[reagent "0.7.0"]
[cljs-ajax "0.7.2"]]
:repl-options {:init-ns user
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}}
:plugins [[lein-cljsbuild "1.1.2"]
[lein-figwheel "0.5.0-2"]
[lein-shell "0.5.0"]]}}
:uberjar-name "slacky-standalone.jar"
:aliases {"fig" ["trampoline" "run" "-m" "figwheel.main"]
"fig:build" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]
"fig:min" ["run" "-m" "figwheel.main" "-O" "advanced" "-bo" "dist"]})