aboutsummaryrefslogtreecommitdiffstats
path: root/src/chameleon/config.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/chameleon/config.clj')
-rw-r--r--src/chameleon/config.clj18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/chameleon/config.clj b/src/chameleon/config.clj
new file mode 100644
index 0000000..4982f4a
--- /dev/null
+++ b/src/chameleon/config.clj
@@ -0,0 +1,18 @@
+(ns chameleon.config
+ (:require [integrant.core :as ig]
+ [chameleon.aai-processor :refer :all]))
+
+(defn config
+ [app-config]
+ (let [conf {
+ :chameleon/event
+ {:event-config (assoc-in (:event-config app-config)
+ [:aai :processor] from-spike)
+ :gallifrey-host (:gallifrey-host app-config)}
+ :chameleon/handler
+ {:gallifrey-host (:gallifrey-host app-config)}
+ :chameleon/http-server
+ {:port (:http-port app-config)
+ :handler (ig/ref :chameleon/handler)}}]
+ (ig/load-namespaces conf)
+ conf))