blob: 52e3395236fe85995e25536d2a5f00054de6ed60 (
plain)
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
|
# Git
.git/
.gitignore
.gitattributes
.gitea/
# Python artifacts
__pycache__/
*.py[cod]
*.so
venv/
.venv/
*.egg-info/
# Release / build artifacts
yt-local/
python/
get-pip.py
*.7z
*.zip
build/
dist/
# IDE / editors
.vscode/
.idea/
*.swp
*.swo
*~
# Testing / coverage
.pytest_cache/
.coverage
htmlcov/
tests/
# Data / user config
data/
debug/
settings.txt
# Docs
docs/
*.md
LICENSE
# AI tools
.kiro/
.claude/
.cursor/
# Docker itself
Dockerfile
docker-compose*.yml
|