-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy patharchlens.json
63 lines (63 loc) · 1.23 KB
/
archlens.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://raw.githubusercontent.com/archlens/ArchLens/master/src/config.schema.json",
"name": "zeeguu-api",
"rootFolder": "zeeguu",
"github": {
"url": "https://github.com/zeeguu/api",
"branch": "master"
},
"saveLocation": "./diagrams/",
"views": {
"top-level-view-depth-1": {
"packages": [
"archlens_cli.py",
{
"path": "*",
"depth": 1
}
],
"ignorePackages": []
},
"inside-api": {
"packages": [
{
"path": "api",
"depth": 1
}
],
"ignorePackages": [
"*test*",
"core"
]
},
"inside-core-model": {
"packages": [
{
"path": "core/model",
"depth": 3
}
],
"ignorePackages": [
"*test*",
"core"
]
},
"content-retrieval": {
"packages": [
"core.content_cleaning",
"core.content_quality",
"core.content_retriever",
"core.elastic",
"core.ml_models",
"core.feed_handler",
"core.nlp_pipeline",
"core.semantic_search",
"core.tokenization"
],
"ignorePackages": [
"*test*",
"core"
]
}
}
}