forked from luminus-framework/luminus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
23 lines (23 loc) · 904 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
23
(defproject luminus "0.1.0-SNAPSHOT"
: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.6.0"]
[lib-noir "0.8.4"]
[compojure "1.1.8"]
[ring-server "0.3.1"]
[markdown-clj "0.9.47"]
[clj-http "0.9.2"]
[crouton "0.1.2"]]
:min-lein-version "2.0.0"
:plugins [[lein-ring "0.8.10"]]
:profiles {:production
{:ring
{:open-browser? false
:stacktraces? false
:auto-reload? false}}
:dev {:dependencies [[ring-mock "0.1.5"]
[ring/ring-devel "1.2.1"]]}}
:ring {:handler luminus.handler/app
:init luminus.handler/init})