Skip to content

Commit 7e0df19

Browse files
committed
refine inspect logic
Signed-off-by: pixiake <guofeng@yunify.com>
1 parent a07426e commit 7e0df19

Some content is hidden

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

51 files changed

+2056
-1007
lines changed

.dockerignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Git
2+
.git
3+
.gitignore
4+
.github
5+
6+
# IDE
7+
.idea
8+
.vscode
9+
*.swp
10+
*.swo
11+
12+
# Python
13+
__pycache__
14+
*.pyc
15+
*.pyo
16+
*.pyd
17+
.Python
18+
*.so
19+
.pytest_cache
20+
.coverage
21+
htmlcov
22+
23+
# Virtual environments
24+
venv/
25+
env/
26+
ENV/
27+
28+
# OS
29+
.DS_Store
30+
Thumbs.db
31+
32+
# Logs
33+
*.log
34+
logs/
35+
36+
# Temporary files
37+
*.tmp
38+
*.temp
39+
40+
# Documentation
41+
README.md
42+
docs/
43+
44+
# CI/CD
45+
.github/workflows/
46+
47+
# Local development files
48+
docker-compose.yml
49+
docker-compose.override.yml
50+
51+
# Data directories (will be created in container)
52+
data/
53+
54+
# 多架构构建脚本
55+
build-multiarch.sh
56+
dev.sh
57+
docker-compose.multiarch.yml

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/enhancement.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/OWNERS

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/release-drafter.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/settings.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 0 additions & 69 deletions
This file was deleted.

.github/workflows/release-drafter.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)