-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
23 lines (23 loc) · 862 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 gregflix "1.0.0"
:description "Gregflix"
:url "https://gregflix.site"
:dependencies [[org.clojure/clojure "1.9.0"]
[ring/ring-core "1.6.3"]
[ring/ring-devel "1.6.3"]
[ring/ring-jetty-adapter "1.6.3"]
[compojure "1.6.0"]
[com.cemerick/friend "0.2.3"]
[com.datomic/datomic-free "0.9.5697"]
[selmer "1.11.6"]
[clj-time "0.15.2"]
[org.clojure/data.csv "0.1.4"]
[midje "1.9.9"]]
:plugins [[lein-ring "0.12.3"]
[lein-sass "0.4.0"]
[lein-midje "3.2.1"]
[lein-exec "0.3.7"]]
:ring {:handler gregflix.web/app}
:sass {:src "resources/sass"
:output-directory "resources/public/css"
:style :compressed}
:main gregflix.main)