-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
17 lines (17 loc) · 887 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject cryogen "0.1.0"
: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.11.1"]
[ring/ring-devel "1.8.2"]
[compojure "1.6.2"]
[ring-server "0.5.0"]
[cryogen-flexmark "0.1.4"]
[cryogen-core "0.4.4"]]
: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"]})