-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
executable file
·47 lines (47 loc) · 2.13 KB
/
project.clj
File metadata and controls
executable file
·47 lines (47 loc) · 2.13 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
(defproject bolha-musical-api "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.10.0"]
[migratus "1.2.7"]
[com.layerware/hugsql "0.5.1"]
[clj-spotify "0.1.9"]
[clj-time "0.15.2"]
[buddy "2.0.0"]
[try-let "1.3.1"]
[com.taoensso/carmine "2.19.1"]
[mysql/mysql-connector-java "8.0.17"]
[seancorfield/next.jdbc "1.0.10"]
[metosin/compojure-api "2.0.0-alpha30"]
[environ "1.1.0"]
[clojurewerkz/quartzite "2.1.0"]
[com.fzakaria/slf4j-timbre "0.3.14"]
[com.climate/claypoole "1.1.4"]
[org.flatland/ordered "1.5.7"]
[tongue "0.2.9"]
[metis "0.3.3"]
[commons-validator/commons-validator "1.6" ; Apache Commons -- useful validation util fns
:exclusions [commons-beanutils
commons-digester
commons-logging]]]
:plugins [[lein-environ "1.1.0"]
[lein-cljfmt "0.6.5"]
[lein-kibit "0.1.8"]
[lein-ring "0.12.5"]
[migratus-lein "0.5.2"]]
:ring {:init bolha-musical-api.task.sync-playlist-users/init
:handler bolha-musical-api.handler/app}
:migratus {:store :database
:migration-dir "migrations"
:db ~(get (System/getenv) "DATABASE_URL")}
:uberjar-name "bolha.jar"
:jvm-opts ["-Duser.timezone=Etc/UCT" "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=4001"]
:profiles {
;; Set these in ./profiles.clj
:test-env-vars {}
:dev-env-vars {}
:test [:test-env-vars]
:dev [{:dependencies [[javax.servlet/javax.servlet-api "3.1.0"]]
:resource-paths ["resources"]}
:dev-env-vars]
}
:test-selectors {:default (constantly true)
:wip :wip})