-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
33 lines (28 loc) · 981 Bytes
/
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
(defproject
playground "0.1.0"
:description "An example project to try out different libraries"
:url "https://github.com/xbrln/clj-playground"
:dependencies [[aero "1.1.6"]
[com.brunobonacci/mulog "0.8.1"]
[com.github.seancorfield/next.jdbc "1.2.731"]
[migratus "1.3.5"]
[org.clojure/clojure "1.10.3"]
[org.clojure/data.csv "1.0.0"]
[org.postgresql/postgresql "42.3.0"]]
:min-lein-version "2.0.0"
:main ^:skip-aot playground.core
:plugins [[migratus-lein "0.7.3"]]
:migratus {:store :database
:migration-dir "migrations"
:db {:dbtype "postgres"
:dbname "playground"
:user "playground"
:password (get (System/getenv) "DB_PASSWORD")
:port 5433
:serverTimezone "CET"}}
:profiles
{:uberjar
{:aot :all
:uberjar-name "app-standalone.jar"}
:dev {}
:test {}})