-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree.txt
More file actions
116 lines (115 loc) · 3.91 KB
/
tree.txt
File metadata and controls
116 lines (115 loc) · 3.91 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
.
├── app.doql.less
├── CHANGELOG.md
├── deps.json
├── examples
│ ├── c2004_monorepo_demo.py
│ ├── ci_cd_integration.py
│ ├── fastapi-app
│ │ ├── app
│ │ │ ├── __init__.py
│ │ │ └── users
│ │ │ ├── __init__.py
│ │ │ └── routes.py
│ │ ├── Dockerfile
│ │ ├── main.py
│ │ ├── README.md
│ │ ├── requirements.txt
│ │ └── wup.yaml
│ ├── flask-app
│ │ ├── app
│ │ │ ├── auth
│ │ │ │ ├── __init__.py
│ │ │ │ └── routes.py
│ │ │ └── __init__.py
│ │ ├── Dockerfile
│ │ ├── main.py
│ │ ├── README.md
│ │ ├── requirements.txt
│ │ └── wup.yaml
│ ├── multi-service
│ │ ├── auth-service
│ │ │ ├── app
│ │ │ │ └── auth
│ │ │ │ └── routes.py
│ │ │ ├── Dockerfile
│ │ │ ├── main.py
│ │ │ ├── requirements.txt
│ │ │ └── wup.yaml
│ │ ├── docker-compose.yml
│ │ ├── payments-service
│ │ │ ├── app
│ │ │ │ └── payments
│ │ │ │ └── routes.py
│ │ │ ├── Dockerfile
│ │ │ ├── main.py
│ │ │ ├── requirements.txt
│ │ │ └── wup.yaml
│ │ └── users-service
│ │ ├── app
│ │ │ └── users
│ │ │ └── routes.py
│ │ ├── Dockerfile
│ │ ├── main.py
│ │ ├── requirements.txt
│ │ └── wup.yaml
│ ├── testql_demo.py
│ ├── testql_integration.py
│ ├── visual_diff_demo.py
│ └── webhook_notifications.py
├── goal.yaml
├── LICENSE
├── project.sh
├── pyproject.toml
├── README.md
├── scripts
│ └── run_probe_smoke.py
├── SUMD.md
├── SUMR.md
├── testql-deps.json
├── testql-scenarios
│ ├── generated-cli-tests.testql.toon.yaml
│ └── generated-from-pytests.testql.toon.yaml
├── tests
│ ├── test_e2e.py
│ ├── test_monitoring_manifest.py
│ ├── test_testql_monitor.py
│ ├── test_testql_watcher.py
│ ├── test_web_client.py
│ └── test_wup.py
├── TODO.md
├── tree.sh
├── tree.txt
├── uv.lock
├── VERSION
├── wup
│ ├── anomaly_detector.py
│ ├── anomaly_models.py
│ ├── assistant.py
│ ├── _ast_detector.py
│ ├── cli.py
│ ├── config.py
│ ├── core.py
│ ├── dependency_mapper.py
│ ├── _hash_detector.py
│ ├── __init__.py
│ ├── models
│ │ ├── config.py
│ │ └── __init__.py
│ ├── monitoring_manifest.py
│ ├── testql_discovery.py
│ ├── testql_monitor.py
│ ├── testql_watcher.py
│ ├── visual_diff.py
│ ├── web_client.py
│ └── _yaml_detector.py
├── wup.egg-info
│ ├── dependency_links.txt
│ ├── entry_points.txt
│ ├── PKG-INFO
│ ├── requires.txt
│ ├── SOURCES.txt
│ └── top_level.txt
├── wup.yaml
└── wup.yaml.example
24 directories, 90 files