-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (16 loc) · 809 Bytes
/
project.clj
File metadata and controls
16 lines (16 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(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.10.0"]
[ring/ring-devel "1.6.3"]
[compojure "1.6.0"]
[org.webjars.npm/bulma "0.6.2"]
[ring-server "0.5.0"]
[cryogen-markdown "0.1.7"]
[cryogen-core "0.1.65"]]
:plugins [[lein-ring "0.12.5"]]
:main cryogen.core
:ring {:init cryogen.server/init
:handler cryogen.server/handler})