first release v0.1

This commit is contained in:
2024-10-07 16:28:10 +02:00
commit 03570a30e6
28 changed files with 2124 additions and 0 deletions

35
docs/uml/docker.pu Normal file
View File

@@ -0,0 +1,35 @@
@startuml
title: Dockerisation mdm_to_neo4j
header version: 19.03.2024
skinparam shadowing false
skinparam node {
backgroundColor<<Docker>> #ccccff
}
node "localhost" {
folder "input Files" as input {
file "xml" as xml1
file "xml" as xml2
}
node "Container" <<Docker>> {
component "Python" as py
artifact "mdm_to_neo4j" as mdm
py -- mdm
}
component "Neo4j" <<DBMS>> as neo4j
folder "Database Storage" {
database "Neo4j-Database" as db
}
input <.. mdm
mdm --> neo4j
neo4j -- db
}
@enduml