Fork me on GitHub
#re-frame
<
2020-09-29
>
Grant Isom17:09:05

Anyone have any good resources for deploying a reframe app with docker?

p-himik17:09:41

re-frame in this regard is no different from reagent, and I've already answered in #reagent

3
Michael Stokley22:09:31

we use inject-cofx when we want a random uuid. i'd like n - will this work? will this accomplish purity?

(rf/reg-cofx
 ::make-uuid
 (fn [coeffects _]
   (assoc coeffects :make-uuid random-uuid)))

Michael Stokley22:09:11

in a testing context i could inject any random-uuid - such as a deterministic fn