Fork me on GitHub
#fulcro
<
2021-01-22
>
bmaddy18:01:30

I'm interested in trying out fulcro-rad-datomic by using it on an internal app at work. Are there any recommendations on how to get started with it? Is it to just copy the fulcro-rad-demo repo?

xceno19:01:31

That's pretty much it yes. Get some datomic-dev-local setup going and add your credentials to the config and you're good to go

xceno19:01:34

So for example your shared/config/dev.edn could look like this:

{:com.fulcrologic.rad.database-adapters.datomic/databases
                                     {:main {:datomic/schema   :production
                                             :datomic/database "my-dev-db"
                                             ;;:datomic/prevent-changes? true ;; See default.edn for docs
                                             :datomic/client   {:server-type :dev-local ;; 
                                                                :system      "my-dev-system"}}}}

bmaddy20:01:26

Nice, thanks.