We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad6b2a5 commit 53b75eeCopy full SHA for 53b75ee
erd.md
@@ -0,0 +1,24 @@
1
+Add `schemaspy.properties`:
2
+
3
4
+```
5
+# type of database. Run with -dbhelp for details
6
+schemaspy.t=pgsql
7
+# optional path to alternative jdbc drivers.
8
+#schemaspy.dp=path/to/drivers
9
+# database properties: host, port number, name user, password
10
+schemaspy.host=host.docker.internal
11
+schemaspy.port=5432
12
+schemaspy.db=development
13
+schemaspy.u=john
14
+schemaspy.p=123456
15
+# output dir to save generated files
16
+# schemaspy.o=path/to/output
17
+# db scheme for which generate diagrams
18
+schemaspy.s=public
19
20
21
+```make
22
+schemaspy:
23
+ docker run -v "$(shell pwd)/schemaspy:/output" -v "$(shell pwd)/schemaspy.properties:/schemaspy.properties" schemaspy/schemaspy:snapshot
24
0 commit comments