This fork changes https://github.com/felixflores/datomic_schema_grapher to use datomic.client.api instead of datomic.api
This makes it work with Datomic Cloud.
Visually see the datomic schema. Uses graphviz.
Add to your :dependencies
[datomic-schema-grapher "0.0.1"]
If you want to use the lein plugin you must also add the dependency to your project's :plugins vector.
brew install graphviz
lein deps
(require '[datomic-schema-grapher.core :refer (graph-datomic)])
(graph-datomic "datomic:mem://example")
;; pops up a swing UI
(graph-datomic "datomic:mem://example" :save-as "the-schema.dot")
;; writes graphviz to file and pops up swing UI
(graph-datomic "datomic:mem://example" :save-as "the-schema.dot" :no-display true)
;; does not pop up a display
In order to use it as a lein plugin you must list it as a dependency and as a plugin.
; project.clj
(defproject your-project "x.x.x"
:dependencies [[datomic-schema-grapher "0.0.1"]]
:plugins [[datomic-schema-grapher "0.0.1"]])
then
lein graph-datomic <datomic:protocol://example>
Note that the lein plugin will not work for in memory databases. Consider using the repl with in memory databases.
This project is still in the early stages of development. The API is likely to change.
Copyright © 2014 MIT
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close