-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.clj
More file actions
24 lines (24 loc) · 859 Bytes
/
project.clj
File metadata and controls
24 lines (24 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(defproject project1 "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[lein-ring "0.8.7"]
[lein-cljsbuild "1.0.3"]]
:ring {:handler project1.core/full-handler
:init project1.core/on-init
:port 4001
:destroy project1.core/on-destroy}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/data.json "0.2.3"]
[org.postgresql/postgresql "9.2-1003-jdbc4"]
[korma "0.3.0-RC6"]
[com.novemberain/monger "1.7.0"]
[cheshire "5.1.1"]
[ring "1.2.0"]
[compojure "1.1.6"]
[liberator "0.10.0"]
[hiccup "1.0.4"]
[enlive "1.1.5"]]
:cljsbuild {:builds [{:source-paths ["cljs"]
:compiler {:output-to "resources/public/app.js"}}]})