git.fiddlerwoaroof.com
Raw Blame History
(ns fulcro-cljdoc.server
  (:require
    [fulcro.easy-server :refer [make-fulcro-server]]
    ; MUST require these, or you won't get them installed.
    [fulcro-cljdoc.api.read]
    [fulcro-cljdoc.api.mutations]))

(defn build-server
  [{:keys [config] :or {config "config/dev.edn"}}]
  (make-fulcro-server
    :parser-injections #{:config}
    :config-path config))