-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
30 lines (25 loc) · 1.13 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
(defproject lemme-know-bot "0.7.0"
;;; Project Metadata
:description "A Telegram Bot that mentions you when the specified text in a chat matches."
:url "https://github.com/wdhowe/lemme-know-bot"
: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, Plugins
:dependencies [[com.taoensso/timbre "6.3.1"]
[environ "1.2.0"]
[org.clojure/clojure "1.11.1"]
[telegrambot-lib "2.12.0"]
[cheshire "5.12.0"]]
;;; Profiles
:profiles {:uberjar {:aot :all}
:dev [:project/dev :profiles/dev]
:test [:project/test :profiles/test]
;; only edit :profiles/* in profiles.clj
:profiles/dev {}
:profiles/test {}
:project/dev {:env {:log-level "debug"}
:plugins [[lein-environ "1.1.0"]]}
:project/test {:env {:log-level "info"}
:plugins [[lein-environ "1.1.0"]]}}
;;; Running Project Code
:main ^:skip-aot lemme-know-bot.core)