fyp-report/diagrams/system_diagram.d2
Andre Henriques 479d7b6f39
All checks were successful
continuous-integration/drone/push Build is passing
chore: added some diagrams
2024-03-10 00:09:12 +00:00

30 lines
343 B
Plaintext

User.shape: Person
Server.shape: Cloud
Proxy.shape: Hexagon
Api: "API Server" { }
Web: "Web Server" { }
Runner: "Model Runner" {
style.multiple: true
}
Train: "Model Trainer" {
style.multiple: true
}
database: "Database" {
shape: cylinder
}
User->Proxy
Server->Proxy
Proxy->Api
Proxy->Web
Api->Database
Api->Runner
Api->Train