mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
Initial commit, not yet complete.
This commit is contained in:
parent
53885f696d
commit
d437f07fc2
33 changed files with 884 additions and 3 deletions
38
project.clj
Normal file
38
project.clj
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
(defproject smeagol "0.1.0-SNAPSHOT"
|
||||
:description "A simple Git-backed Wiki inspired by Gollum"
|
||||
:url "http://example.com/FIXME"
|
||||
:dependencies [[org.clojure/clojure "1.6.0"]
|
||||
[lib-noir "0.9.4"]
|
||||
[ring-server "0.3.1"]
|
||||
[selmer "0.7.2"]
|
||||
[com.taoensso/timbre "3.3.1"]
|
||||
[com.taoensso/tower "3.0.2"]
|
||||
[markdown-clj "0.9.55"
|
||||
:exclusions [com.keminglabs/cljx]]
|
||||
[environ "1.0.0"]
|
||||
[im.chit/cronj "1.4.2"]
|
||||
[noir-exception "0.2.2"]
|
||||
[prone "0.6.0"]]
|
||||
|
||||
:repl-options {:init-ns smeagol.repl}
|
||||
:jvm-opts ["-server"]
|
||||
:plugins [[lein-ring "0.8.13"]
|
||||
[lein-environ "1.0.0"]
|
||||
[lein-ancient "0.5.5"]]
|
||||
:ring {:handler smeagol.handler/app
|
||||
:init smeagol.handler/init
|
||||
:destroy smeagol.handler/destroy}
|
||||
:profiles
|
||||
{:uberjar {:omit-source true
|
||||
:env {:production true}
|
||||
:aot :all}
|
||||
:production {:ring {:open-browser? false
|
||||
:stacktraces? false
|
||||
:auto-reload? false}}
|
||||
:dev {:dependencies [[ring-mock "0.1.5"]
|
||||
[ring/ring-devel "1.3.1"]
|
||||
[pjstadig/humane-test-output "0.6.0"]]
|
||||
:injections [(require 'pjstadig.humane-test-output)
|
||||
(pjstadig.humane-test-output/activate!)]
|
||||
:env {:dev true}}}
|
||||
:min-lein-version "2.0.0")
|
||||
Loading…
Add table
Add a link
Reference in a new issue