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?
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
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"}}}}
Nice, thanks.