aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallifrey/config.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallifrey/config.clj')
-rw-r--r--src/gallifrey/config.clj17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gallifrey/config.clj b/src/gallifrey/config.clj
new file mode 100644
index 0000000..fd9e5ee
--- /dev/null
+++ b/src/gallifrey/config.clj
@@ -0,0 +1,17 @@
+(ns gallifrey.config
+ (:require [integrant.core :as ig]))
+
+(defn config
+ [app-config]
+ (let [conf {:gallifrey/store
+ {:db-server (:db-server app-config)
+ :db-name "gallifrey"}
+
+ :gallifrey/handler
+ {:store (ig/ref :gallifrey/store)}
+
+ :gallifrey/http-server
+ {:port (:http-port app-config)
+ :handler (ig/ref :gallifrey/handler)}}]
+ (ig/load-namespaces conf)
+ conf))