forked from luminus-framework/luminus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
22 lines (22 loc) · 822 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject luminus "0.1"
:description "Documentation site for the Luminus framework"
:url "http://www.luminusweb.net/"
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/core.cache "0.6.4"]
[compojure "1.4.0"]
[ring-server "0.4.0"]
[markdown-clj "0.9.76"]
[clj-http "2.0.0"]
[crouton "0.1.2"]
[selmer "0.9.2"]]
:min-lein-version "2.0.0"
:plugins [[lein-ring "0.9.7"]]
:profiles {:production
{:ring
{:open-browser? false
:stacktraces? false
:auto-reload? false}}}
:ring {:handler luminus.handler/app
:init luminus.handler/init})