fulcro

Book: http://book.fulcrologic.com, Community Resources: https://fulcro-community.github.io/, RAD book at http://book.fulcrologic.com/RAD.html
2021-01-22T18:51:30.019100Z

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?

xceno 2021-01-22T19:07:31.019500Z

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

xceno 2021-01-22T19:09:34.019700Z

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 ;; <https://docs.datomic.com/cloud/client/client-api.html#client>
                                                                :system      "my-dev-system"}}}}

2021-01-22T20:19:26.020500Z

Nice, thanks.