Browse Source

[db][doc] added ERD diagram with mermaidjs

Maxime Alves LIRMM@home 3 years ago
parent
commit
acaec5f23c
2 changed files with 73318 additions and 0 deletions
  1. 17
    0
      db/diagram.html
  2. 73301
    0
      db/mermaid.js

+ 17
- 0
db/diagram.html View File

@@ -0,0 +1,17 @@
1
+<!DOCTYPE>
2
+<html>
3
+	<head>
4
+		<meta charset="utf-8">
5
+	</head>
6
+	<body>
7
+		<div class="mermaid" id="pyHeatpumpERD">
8
+		erDiagram
9
+			VARIABLE ||--o{ VAR-TYPE : "is of type"
10
+			VARIABLE }o--|| VAR-VALUES : "has value at time"
11
+		</div>
12
+		<script src="mermaid.js"></script>
13
+		<script>
14
+			mermaid.initialize({startOnLoad:true});
15
+		</script>
16
+	</body>
17
+</html>

+ 73301
- 0
db/mermaid.js
File diff suppressed because it is too large
View File


Loading…
Cancel
Save