org.clojars.defng/datomic-schema-grapher

Adds ability to use datomic-schema-grapher with Datomic Cloud.


License
EPL-1.0

Documentation

datomic-schema-grapher

Visually see the datomic schema. Uses graphviz.

alt tag

Installation

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

REPL Usage

(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

Plugin

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.

License

Copyright © 2014 MIT