You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ to install ERDot:
20
20
21
21
```pip install ERDot```
22
22
23
-
you may also need to [install graphvis](https://graphviz.org/download/) to be able to create images of the dot files generated.
23
+
you may also need to [install graphvis](https://graphviz.org/download/) to be able to create images of the dot files generated. If you don't want to install graphviz, you can copy the contents of the generated dot file into an [online grapviz viewer](https://edotor.net).
24
24
25
25
## CLI Usage
26
26
```
@@ -32,14 +32,16 @@ Options:
32
32
--help Show this message and exit.
33
33
```
34
34
35
-
Note that after generating the .dot file, you will still need to output it to your desired format using graphvis. An example of how to do this:
35
+
Note that after generating the .dot file, you will still need to output it to your desired format using graphviz. An example of how to do this:
36
36
37
37
```bash
38
38
erdot -i inputFile.erd.json
39
39
40
40
dot ERDotOutput.dot -Tpng -o imageFile.png
41
41
```
42
42
43
+
(You could also copy and paste the contents of the .dot file into an [online graphviz viewer](https://edotor.net))
0 commit comments