-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
61 lines (48 loc) · 991 Bytes
/
.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
dev.txt
dev.py
# Ignore IDE settings
.idea/
# Ignore Python virtual environments
venv/
ENV/
env/
.venv/
# Ignore Python cache and compiled files
__pycache__/
*.py[cod] # Matches .pyc, .pyo, .pyd files
*$py.class # Jython compiled classes
# Ignore environment-related files
*.env # Common for dotenv files holding environment variables
*.env.local
# Ignore OS-specific files
.DS_Store # macOS
Thumbs.db # Windows
# Ignore log and temp files
*.log
*.tmp
*.swp # Vim swap files
*.swo
*.swn
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Ignore mypy type-checker cache
.mypy_cache/
# Ignore test coverage results
htmlcov/
.coverage
coverage.xml
.cache/
# Ignore distribution/build artifacts
dist/
build/
*.egg-info/
*.egg
eggs/
wheels/
# Ignore profiling data
*.prof
# Ignore Docker-related files (if using Docker)
docker-compose.override.yml
docker-compose.local.yml
# Ignore SQLite database files (common in Django or Flask projects)
*.sqlite3