30 lines
684 B
Text
30 lines
684 B
Text
model {
|
|
edp = system 'EDP' {
|
|
description 'EDP Edge Development Platform'
|
|
technology 'Kubernetes'
|
|
-> enterprise 'integrates'
|
|
-> cloud 'deploys and observes'
|
|
-> localbox // inner-outer loop synchronization
|
|
|
|
application = schema 'application' {
|
|
description 'An application description'
|
|
technology 'DSL'
|
|
style {
|
|
color primary
|
|
}
|
|
}
|
|
|
|
container testApp 'Fibonacci' {
|
|
description 'Testapp to validate deployments'
|
|
|
|
component fibonacci 'Fibonacci' {
|
|
technology 'Golang'
|
|
icon tech:go
|
|
}
|
|
}
|
|
|
|
// UI requests data from the Backend
|
|
// ui -> backend 'fetches via HTTPS'
|
|
}
|
|
}
|
|
|