Skip to content

Commit db60957

Browse files
authored
Merge pull request #14 from ValentinKozlov/main
Новая версия для примера repository_structure_example
2 parents fadf10c + e1ddf85 commit db60957

108 files changed

Lines changed: 5340 additions & 251 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/jsonata_query_examples/jsonata_query_example.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,3 +327,4 @@ functions:
327327
$eval($functions.get_resources,{"context": {"ram": 2, "cpu_type": "standart", "cpu": 8, "storage_type": "standart", "storage_size": 5}, "mult": 1, "output_type": "full"});
328328
)
329329
```
330+
Также нужно учитывать, что блок кода описанный выше работает только с переданным контекстом и если вам нужно будет получить что-то типа `$.components`, то это нужно делать при помощи переданных параметров `$components := $.components`.

src/repository_structure_example/README.md

Lines changed: 113 additions & 15 deletions
Large diffs are not rendered by default.
Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
imports:
2-
- business_arch/_root.yaml
3-
- information_arch/_root.yaml
1+
imports:
42
- application_arch/_root.yaml
5-
- tech_arch/_root.yaml
63
- artefacts/_root.yaml
4+
- business_arch/_root.yaml
75
- dictionaries/_root.yaml
6+
- documentation/_root.yaml
87
- enterprise_arch/_root.yaml
9-
- settings/_root.yaml
10-
- standards/_root.yaml
8+
- information_arch/_root.yaml
9+
- metamodels/_root.yaml
10+
- standards/_root.yaml
11+
- tech_arch/_root.yaml
12+
13+
14+
15+
16+
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
imports:
2-
- systems/_root.yaml
1+
imports:
2+
- reports/_root.yaml
3+
- systems/_root.yaml
4+
- users/_root.yaml
5+
- aspects/_root.yaml
36
- docs.yaml
7+
- units.yaml
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
imports:
2+
- aspects.yaml
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
aspects:
2+
qa_systems:
3+
title: QA системы
4+
location: QA системы
5+
6+
sales:
7+
title: Продажи
8+
location: Продажи
9+

src/repository_structure_example/application_arch/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
docs:
2-
# Заглушка пока нет описсания по бизнес архитектуре
2+
# Заглушка пока нет описания
33
swamp.application_arch:
44
location: 04. Прикладная архитектура
5-
description: Описание информационной архитектурой
5+
description: Описание прикладной архитектуры
66
type: markdown
77
template: application_arch.md
88

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
imports:
2+
- systems_list/_root.yaml
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
imports:
2+
- docs.yaml
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
docs:
2+
systems_table_list:
3+
type: table
4+
headers:
5+
- value: title
6+
text: Система
7+
sortable: true
8+
align: left
9+
width: 10%
10+
link: link_to_system
11+
12+
- value: owner_unit
13+
text: Принадлежность
14+
sortable: true
15+
align: left
16+
width: 10%
17+
18+
- value: description
19+
text: Описание
20+
sortable: false
21+
align: left
22+
width: 40%
23+
24+
- value: application_owner
25+
text: Владелец приложения
26+
sortable: true
27+
align: left
28+
width: 10%
29+
30+
- value: system_entities
31+
text: Бизнес-сущности
32+
link: link_to_system_entities
33+
align: left
34+
width: 10%
35+
36+
source: swamp.dataset.systems_list
37+
38+
systems_list:
39+
location: 04. Прикладная архитектура/01. Список систем
40+
type: markdown
41+
source: systems_table.md
42+

0 commit comments

Comments
 (0)