mirror of
https://github.com/bpmbpm/doc.git
synced 2026-04-30 20:40:50 +00:00
| .. | ||
| example.md | ||
| readme.md | ||
tech
info
- Управление вёрсткой в PlantUML
- Построение диаграмм UML с использованием PlantUML
- Architecture as Code: моделируем архитектуру предприятия в ArchiMate ; Связи между элементами создаются по шаблону:
doc
- https://pdf.plantuml.net/PlantUML_Language_Reference_Guide_ru.pdf
- https://plantuml.com/ru-dark/sequence-diagram
plantuml-stdlib
- https://plantuml.com/ru/stdlib ; spec: https://plantuml.com/ru/archimate-diagram
- https://github.com/plantuml/plantuml-stdlib ; https://github.com/plantuml-stdlib
- https://github.com/plantuml-stdlib/Archimate-PlantUML ;
- https://github.com/plantuml-stdlib/C4-PlantUML ; https://github.com/plantuml-stdlib/Azure-PlantUML
- https://crashedmind.github.io/PlantUMLHitchhikersGuide/Stdlib/StdLibOverview.html
example
- https://www.plantuml.com/plantuml/uml/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000
- https://www.planttext.com/
- https://plantuml-editor.kkeisuke.com/
- https://plantuml.github.io/plantuml.js/ примеры работают, но
code from https://github.com/plantuml-stdlib/Archimate-PlantUML
@startuml
!includeurl https://raw.githubusercontent.com/plantuml-stdlib/Archimate-PlantUML/master/Archimate.puml
!theme archimate-standard from https://raw.githubusercontent.com/plantuml-stdlib/Archimate-PlantUML/master/themes
title Archimate Sample - Requirement & Application Services
'Elements'
Motivation_Requirement(ReqPayrollStandard, "Do Payroll with a standard system")
Motivation_Requirement(ReqBudgetPlanning, "Do budget planning within the ERP system")
Application_Service(ASPayroll,"Payroll Service")
Application_Service(ASBudgetPlanning,"Budget Planning Service")
Application_Component(ACSAPFinanceAccRec, "SAP Finance - Accounts Recievables")
Application_Component(ACSAPHR, "SAP Human Resources")
Application_Component(ACSAPFin, "SAP Finance")
Application_Component(ACSAP,"SAP")
'Relationships'
Rel_Realization_Up(ASPayroll, ReqPayrollStandard)
Rel_Realization_Up(ASBudgetPlanning, ReqBudgetPlanning)
Rel_Realization_Up(ACSAPFinanceAccRec, ASBudgetPlanning)
Rel_Realization_Up(ACSAPHR, ASPayroll)
Rel_Composition_Up(ACSAPFin, ACSAPFinanceAccRec)
Rel_Composition_Up(ACSAP, ACSAPHR)
Rel_Composition_Up(ACSAP, ACSAPFin)
@enduml
markdown
- Как использовать PlantUML с Markdown svg : plantuml -tsvg FILENAME
plantuml.js
- https://gitlab.com/gitlab-org/gitlab/-/issues/399611 plantuml.js позволит нам отображать plantuml в веб-интерфейсе полностью на стороне клиента в браузере, вместо использования сервера PlantUML или kroki.
- https://www.npmjs.com/package/plantuml
- Javascript API Client Code https://plantuml.com/ru/code-javascript-synchronous
- https://www.jsdelivr.com/package/npm/node-plantuml
- https://npms.io/search?q=plantuml-js
- https://feedback.js.wiki/wiki/p/plantuml-c4-diagrams