This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-04-23
Channels
- # aws-lambda (1)
- # bangalore-clj (13)
- # beginners (12)
- # boot (3)
- # cider (1)
- # cljs-dev (20)
- # clojure (208)
- # clojure-finland (1)
- # clojure-france (1)
- # clojure-russia (30)
- # clojure-serbia (12)
- # clojure-spec (7)
- # clojure-uk (14)
- # clojurescript (16)
- # cursive (6)
- # datomic (10)
- # emacs (1)
- # hoplon (4)
- # keechma (14)
- # leiningen (2)
- # off-topic (6)
- # om (43)
- # onyx (32)
- # pedestal (8)
- # perun (2)
- # re-frame (7)
- # reagent (33)
- # specter (5)
- # vim (4)
- # yada (9)
hi guys, is using #db/fn
with conformity the correct way to run data migration in datomic ?
@nxqd I cannot speak for "the correct way", but yes, it's a pretty effective one. There's nothing magical to it, this blog post may help you understand how it all works: http://vvvvalvalval.github.io/posts/2016-07-24-datomic-web-app-a-practical-guide.html#data_migrations. Shameless plug: equivalent functionality is also provided in Datofu, with some built-in generic db functions to help you write migrations, see here (https://github.com/vvvvalvalval/datofu#managing-data-schema-evolutions).
I want to move my toy Vase app to a permanent DB, rather than the default in-memory. I've installed the Datomic Starter version, but am not sure what to do next. I've found a variety of docs that each seem to have 80% of what I need, but there are enough redundancies and contradictions that I don't see a clear path forward. I'm initially interested in doing a dev configuration, but also want to be able to configure for production pretty soon.
@deg this might help http://docs.datomic.com/dev-setup.html
After that, prod storage setup is covered here http://docs.datomic.com/storage.html
Thanks! I'll go through that carefully in a bit. I see one question already: that doc describes specifying the access key and secret as parameters to client/connect. But, Vase uses a datomic-Url instead. What is the syntax for passing in the parameters there? I found major hints in http://docs.datomic.com/javadoc/datomic/Peer.html#connect-java.lang.Object-, but none that seemed to match this case exactly. 😞