-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
executable file
·105 lines (86 loc) · 1.19 KB
/
.gitignore
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
# Chrome Profile Manager specific
chrome_profile_manager.lock
chrome_profile_manager.db
chrome_profile_manager/config/local_settings.py
# Python bytecode
__pycache__/
*.py[cod]
*$py.class
# Distribution / packaging
dist/
build/
*.egg-info/
*.egg
.eggs/
pip-wheel-metadata/
# Virtual environments
venv/
.venv/
env/
ENV/
# Development environments
.vscode/
.idea/
*.sublime-workspace
*.sublime-project
# Testing and coverage
.pytest_cache/
.coverage
coverage/
htmlcov/
coverage.xml
# Logs and debugging
logs/
*.log
debug.log
chrome_profile_manager_debug.log
# Temp files
*.tmp
*.temp
*.swp
*.swo
# System files
.DS_Store
Thumbs.db
# Build artifacts
*.spec
*.manifest
*.deb
*.tar.gz
# Configuration and secrets
.env
*.secret
config.local.py
local_settings.py
# Development tools
.python-version
.env.local
.env.*.local
# Documentation builds
docs/_build/
site/
# Profile data backups
profile_backups/
*.profile.bak
# CLI specific
.chrome-profile-history
.profile-cache/
# Debian package files
debian/
*.dsc
*.changes
*.build
# Local development files
TODO.md
NOTES.md
*.local
*_local.*
# Test data
tests/data/
test_outputs/
# Editor backups
*~
*.bak
*.backup
# Rich library debug logs
rich-debug.log