-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
41 lines (37 loc) · 1.68 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
(defproject receive "1.0.0-alpha"
:description "Send and Receive files"
:url "http://receive.nilenso.com"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/test.check "0.9.0"]
[ring "1.8.0"]
[bidi "2.1.6"]
[ring/ring-json "0.5.0"]
[ring-logger "1.0.1"]
[aero "1.1.6"]
[honeysql "0.9.10"]
[seancorfield/next.jdbc "1.1.547"]
[org.postgresql/postgresql "42.2.12"]
[nilenso/honeysql-postgres "0.2.6"]
[hiccup "1.0.5"]
[ragtime "0.8.0"]
[org.clojure/data.json "1.0.0"]
[com.google.api-client/google-api-client "1.30.9"]
[buddy/buddy-sign "3.1.0"]
[clj-time "0.15.2"]
[camel-snake-kebab "0.4.1"]]
:profiles {:test {:prep-tasks [["reset-test-db"]]
:dependencies [[ring/ring-mock "0.4.0"]]}
:uberjar {:aot :all}}
:main receive.core
:aot [receive.core]
:uberjar-name "receive.jar"
:plugins [[lein-ring "0.12.5"]]
:ring {:handler receive.core/app}
:repl-options {:init-ns receive.core
:init (require '[clojure.repl :refer :all])}
:aliases {"migrate" ["run" "-m" "receive.db.migration/migrate"]
"rollback" ["run" "-m" "receive.db.migration/rollback"]
"reset-test-db" ["run" "-m" "receive.fixtures/clear-state"]
"purge-expired" ["run" "-m" "receive.service.files/purge-expired-files!"]})