Fork me on GitHub
#keechma
<
2018-07-29
>
eoliphant00:07:24

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))))

eoliphant00:07:52

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