diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2019-03-14 23:40:35 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2019-03-14 23:42:29 +0000 |
| commit | f20a09da3d09f54842254706b0cf2e3d05a82ca1 (patch) | |
| tree | c3e97328e4ff37f023a95c6032910ed718daf29f /project.clj | |
| download | redirectly-f20a09da3d09f54842254706b0cf2e3d05a82ca1.tar.gz redirectly-f20a09da3d09f54842254706b0cf2e3d05a82ca1.zip | |
initial commit
Diffstat (limited to 'project.clj')
| -rw-r--r-- | project.clj | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/project.clj b/project.clj new file mode 100644 index 0000000..9ae0b54 --- /dev/null +++ b/project.clj @@ -0,0 +1,11 @@ +(defproject redirectly "0.1.0-SNAPSHOT" + :description "mini redirect service" + :url "https://s-ol.nu/redirectly" + :plugins [[lein-ring "0.12.5"]] + :ring {:handler redirectly.core/handler + :destroy redirectly.core/destroy} + :dependencies [[org.clojure/clojure "1.10.0"] + [sonian/carica "1.2.2"] + [ring/ring-core "1.7.1"] + [ring/ring-jetty-adapter "1.7.1"] + [ring-logger "1.0.1"]]) |
