aboutsummaryrefslogtreecommitdiffstats
path: root/dev/dev.clj
blob: 880f5404b711f8e59b9cbb1cbbf593e70d0e4122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(ns dev
  "Tools for interactive development with the REPL. This file should
  not be included in a production build of the application."
  (:require [chameleon.config :refer [config]]
            [chameleon.handler :refer [handler]]
            [integrant.core :as ig]
            [integrant.repl :refer [clear go halt init reset reset-all]]
            [integrant.repl.state :refer [system]]
            [clojure.tools.namespace.repl :refer [refresh refresh-all disable-reload!]]
            [clojure.repl :refer [apropos dir doc find-doc pst source]]
            [clojure.test :refer [run-tests run-all-tests]]
            [clojure.pprint :refer [pprint]]
            [clojure.reflect :refer [reflect]]))

(disable-reload! (find-ns 'integrant.core))

(integrant.repl/set-prep! (constantly (config {
                                               :event-config {:aai {:host "localhost:3904"
                                                                    :topic "spikeEvents"
                                                                    :motsid ""
                                                                    :pass ""
                                                                    :consumer-group"chameleon1"
                                                                    :consumer-id"chameleon1"
                                                                    :timeout 15000
                                                                    :batch-size 8
                                                                    :type "HTTPAUTH"}}
                                               :gallifrey-host "localhost:443"
                                               :http-port 3449})))