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))))
I see the debugger code but I wasn’t sure how to get it running