-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
34 lines (26 loc) · 1.15 KB
/
project.clj
File metadata and controls
34 lines (26 loc) · 1.15 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
(defproject codamic/psychopomps "0.1.0-SNAPSHOT"
:description "A data collector from all over the internet"
:url "http://github.com/Codamic/psychopomps"
:license {:name "GPLv2"
:url "https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha20"]
[org.clojure/core.async "0.3.443"]
[cheshire "5.8.0"]
[clj-time "0.14.0"]
[codamic/hellhound "1.0.0-SNAPSHOT"]]
:plugins [[lein-environ "1.1.0"]
[io.aviso/pretty "0.1.33"]]
:aliases {"db" ["run" "-m" "psychopomps.tasks.db"]}
:main ^:skip-aot psychopomps.core
:target-path "target/%s"
:profiles
{:dev
{:env {:environment :dev
:news-api-key "abc4ba4958af471d80d2324761996999"
:log-level "debug"
:redis-pool nil
:redis-spec "redis://localhost:6379/"
:cassandra-host "localhost"
:source-paths ["src/" "checkouts/hellhound/src/clj"]}}
:test {:dependencies [[se.haleby/stub-http "0.2.1"]]}
:uberjar {:aot :all}})