devcards

Devcards aims to provide a visual REPL experience for ClojureScript https://github.com/bhauman/devcards
2016-02-28T23:06:41.000039Z

Boot users here. Could you guess what the problem is if Im getting this error: ClojureScript could not load :main, did you forget to specify :asset-path? while my edn file says this: {:require [om-boot.dev] :compiler-options {:devcards true} :init-fns [om-boot.dev/main]}

2016-02-28T23:07:13.000040Z

and the dev.cljs file says this: (ns om-boot.dev (:require [devcards.core :as dc :refer-macros [start-devcard-ui!]])) (enable-console-print!) (defn ^:export main [] (dc/start-devcard-ui!))

2016-02-28T23:16:05.000041Z

Also in my task option I have this: reload {:on-jsload 'om-boot.app/init} not sure if I should compleatly seperate devcards from main app here, don't really understand the documentation when they say to seperate the two, in other way than just to seperate the styling from devcards to main app. If someone has a working example of boot and devcards on github that would prorably help me more than trying to describe. The two examples I've found so far just don't work (probably old and deprecated).