An open API service indexing awesome lists of open source software.

https://github.com/aserto-dev/rel2dot

Create GraphViz dot file from relations data
https://github.com/aserto-dev/rel2dot

Last synced: about 1 year ago
JSON representation

Create GraphViz dot file from relations data

Awesome Lists containing this project

README

          

# rel2dot

Create GraphViz dot file from Topaz relations JSON file.

## install rel2dot

```
go install github.com/aserto-dev/rel2dot@latest
```

## generate dot file
```
rel2dot -i ./relations.json | dot -Tpng > gdrive.png
```

## visualize dot file

![result](./gdrive.png)

## generate dot file with inverted directionality

```
rel2dot -f -i ./relations.json | dot -Tpng > gdrive-inv.png
```
## visualize dot file (inverted)

![result](./gdrive-inv.png)