makyo-dev / erd-go

Translates a plain text description of a relational database schema to a graphical entity-relationship diagram.(convert to dot file)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

erd-go

Build Status Coverage Status

Translates a plain text description of a relational database schema to a graphical entity-relationship diagram.(convert to dot file)

ER diagram for nfldb

Install

get binary from releases page.

or

go get github.com/kaishuu0123/erd-go

Usage

Usage:
  erd-go [OPTIONS] PATTERN [PATH]

Application Options:
  -i, --input=  input will be read from the given file.
  -o, --output= output will be written to the given file.

Help Options:
  -h, --help    Show this help message

support input from STDIN.

cat examples/nfldb.er | erd-go

ex.) convert to png from dot (use dot command)

cat examples/nfldb.er | erd-go | dot -Tpng -o nfldb.png

Example

see examples directory

Build Instruction

  1. install glide
    go get github.com/Masterminds/glide
    
  2. install go-bindata
    go get github.com/jteeuwen/go-bindata
    
  3. install peg
    go get github.com/pointlander/peg
    
  4. make
    make
    

LICENSE

MIT

Credits

This work is based off of several existing projects:

About

Translates a plain text description of a relational database schema to a graphical entity-relationship diagram.(convert to dot file)

License:MIT License


Languages

Language:Go 99.1%Language:Makefile 0.9%