-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (15 loc) · 803 Bytes
/
project.clj
File metadata and controls
16 lines (15 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;; This Source Code Form is subject to the terms of the Mozilla Public
;; License, v. 2.0. If a copy of the MPL was not distributed with this
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
(defproject pubsure-reader "0.1.0-SNAPSHOT"
:description "Containium app for pubsure-ws/reader using pubsure-zk."
:url "https://github.com/containium/Backend"
:dependencies [[containium "0.1.0-SNAPSHOT"]
[pubsure/pubsure-ws "0.1.0-SNAPSHOT"]
[pubsure/pubsure-zk "0.1.0-SNAPSHOT"]]
:exclusions [org.clojure/clojure]
:containium {:start pubsure-reader.core/start
:stop pubsure-reader.core/stop
:ring {:handler pubsure-reader.core/app
:context-path "/pubsure"}
:zk-connect-str "localhost:2181"})