File tree Expand file tree Collapse file tree 1 file changed +43
-11
lines changed Expand file tree Collapse file tree 1 file changed +43
-11
lines changed Original file line number Diff line number Diff line change 99- Файлы: docker-compose, prometheus.yml, шаблоны Grafana
1010
1111## Структура
12+ ```
1213packaged_solution/
13- ├─ app/ # исходники демо-приложения (Flask)
14- ├─ ci/ # (опционально) workflow примеры
15- ├─ monitoring/
16- │ ├─ prometheus/
17- │ │ └─ prometheus.yml
18- │ ├─ grafana/ # экспортированные дашборды (.json)
19- │ └─ docker-compose.yml # стек monitoring (prometheus, grafana, cadvisor)
20- ├─ scripts/
21- │ └─ deploy.sh # скрипт автодеплоя из Docker Hub
22- └─ README.md
23-
14+ ├── app
15+ │ ├── deploy.sh
16+ │ ├── docker-compose.yml
17+ │ ├── Dockerfile
18+ │ ├── flaskr
19+ │ │ ├── auth.py
20+ │ │ ├── blog.py
21+ │ │ ├── db.py
22+ │ │ ├── init.py
23+ │ │ ├── schema.sql
24+ │ │ ├── static
25+ │ │ │ └── style.css
26+ │ │ └── templates
27+ │ │ ├── auth
28+ │ │ │ ├── login.html
29+ │ │ │ └── register.html
30+ │ │ ├── base.html
31+ │ │ └── blog
32+ │ │ ├── create.html
33+ │ │ ├── index.html
34+ │ │ └── update.html
35+ │ ├── LICENSE.txt
36+ │ ├── pyproject.toml
37+ │ ├── README.md
38+ │ ├── README.rst
39+ │ └── tests
40+ │ ├── conftest.py
41+ │ ├── data.sql
42+ │ ├── test_auth.py
43+ │ ├── test_blog.py
44+ │ ├── test_db.py
45+ │ └── test_factory.py
46+ ├── ci
47+ ├── docs
48+ ├── monitoring
49+ │ ├── docker-compose.yml
50+ │ ├── grafana
51+ │ └── prometheus
52+ │ └── prometheus.yml
53+ └── scripts
54+ └── deploy.sh
55+ ```
2456
2557## Быстрый старт (локально)
26581 . Запустить приложение, мониторинг и графану:
You can’t perform that action at this time.
0 commit comments