-
Notifications
You must be signed in to change notification settings - Fork 20
/
project.clj
20 lines (20 loc) · 1.03 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject cryogen "0.1.4-SNAPSHOT"
:description "Simple static site generator"
:url "https://github.com/lacarmen/cryogen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0"]
[ring/ring-devel "1.5.1"]
[compojure "1.5.2"]
[ring-server "0.4.0"]
[selmer "1.10.6"]
[clj-text-decoration "0.0.3"]
[io.aviso/pretty "0.1.33"]
[cryogen-flexmark "0.1.5"]
[cryogen-core "0.3.2"]]
:plugins [[lein-ring "0.12.5"]]
:main cryogen.core
:ring {:init cryogen.server/init
:handler cryogen.server/handler}
:aliases {"serve" ["run" "-m" "cryogen.server"]
"serve-fast" ["run" "-m" "cryogen.server" "fast"]})