keechma

Keechma stack. Mention @U050986L9 or @U2J1PHYNM if you have any questions
eoliphant 2018-07-29T00:17:24.000052Z

I figured it out fyi in my core, just changed the app-def to fn’s

(defn  app-definition
  []
  (-> {:routes [[":page" {:page "login"}]]
       :components    ui
       :controllers   controllers
       :subscriptions subscriptions
       :html-element  (.getElementById js/document "app")}
      (dataloader/install datasources edb-schema)
      (forms/install rm-ui-forms/forms rm-ui-forms/forms-automount-fns)))

(defonce running-app (clojure.core/atom nil))

(defn start-app! []
  (reset! running-app (app-state/start! (app-definition))))

eoliphant 2018-07-29T00:17:52.000048Z

I see the debugger code but I wasn’t sure how to get it running