-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (18 loc) · 790 Bytes
/
project.clj
File metadata and controls
18 lines (18 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject subbotin-web "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
: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 [[hiccup "1.0.5"]
[markdown-clj "1.10.5"]
[me.raynes/fs "1.4.6"]
[optimus "0.20.2"]
[org.clojure/clojure "1.12.1"]
[ring-logger "1.0.1"]
[ring/ring-core "1.8.2"]
[ring/ring-devel "1.8.2"]
[ring/ring-jetty-adapter "1.8.2"]]
:main ^:skip-aot subbotin-web.core
:target-path "target/%s"
:aliases {"serve" ["run" "-m" "user/go"]
"generate" ["run" "-m" "user/generate"]})