Skip to content

Commit d2890e9

Browse files
authored
Update README.md
1 parent e7c9890 commit d2890e9

File tree

1 file changed

+43
-11
lines changed

1 file changed

+43
-11
lines changed

README.md

Lines changed: 43 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,50 @@
99
- Файлы: docker-compose, prometheus.yml, шаблоны Grafana
1010

1111
## Структура
12+
```
1213
packaged_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
## Быстрый старт (локально)
2658
1. Запустить приложение, мониторинг и графану:

0 commit comments

Comments
 (0)