re-frame

https://github.com/Day8/re-frame/blob/master/docs/README.md https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md
Grant Isom 2020-09-29T17:26:05.012800Z

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

p-himik 2020-09-29T17:28:41.012900Z

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

1
2020-09-29T22:25:31.014400Z

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)))

2020-09-29T22:26:11.015100Z

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