-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
79 lines (71 loc) · 2.83 KB
/
.gitignore
File metadata and controls
79 lines (71 loc) · 2.83 KB
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
# =========================================
# 🔹 General System Files
# =========================================
.DS_Store # macOS system file
Thumbs.db # Windows thumbnail cache
ehthumbs.db # Windows Explorer cache
*.swp # Vim swap files
*.swo # Vim swap files
*.swn # Vim swap files
*.bak # Backup files
# =========================================
# 🔹 Python Files and Build Artifacts
# =========================================
__pycache__/ # Compiled Python files
*.pyc # Compiled Python files
*.pyo # Compiled Python files
*.pyd # Compiled Python files
*.pdb # Debug files
*.so # Shared object files
*.egg-info/ # Setuptools metadata
*.egg # Egg files
dist/ # Build directory
build/ # Build artifacts
pip-wheel-metadata/ # Wheel metadata
*.manifest # Windows manifest files
# =========================================
# 🔹 Virtual Environments
# =========================================
.venv/ # Local virtualenv
env/ # Alternative virtualenv
venv/ # Alternative virtualenv
# Poetry-managed virtual environments (if not inside the project)
# Uncomment this if you use a global Poetry env:
# /Users/<your-username>/Library/Caches/pypoetry/virtualenvs/
# =========================================
# 🔹 PyCharm Project Files
# =========================================
.idea/ # PyCharm project settings
*.iml # PyCharm module files
workspace.xml # PyCharm workspace file
tasks.xml # PyCharm task settings
modules.xml # PyCharm module settings
shelf/ # PyCharm local history
scratches/ # PyCharm scratch files
# =========================================
# 🔹 Jupyter Notebooks & VSCode Files
# =========================================
.ipynb_checkpoints/ # Jupyter notebook checkpoints
.vscode/ # VSCode settings folder
# =========================================
# 🔹 Logs & Debug Files
# =========================================
logs/ # General log folder
*.log # Log files
debug.log # Debug logs
nohup.out # Terminal background logs
# =========================================
# 🔹 Docker & Deployment Files
# =========================================
docker-compose.override.yml # Local Docker config
.env # Environment variables (DO NOT COMMIT SECRETS)
.env.local # Local override
.env.development # Dev env
.env.production # Production env
# =========================================
# 🔹 Temporary Files & Editors
# =========================================
*.sublime-workspace # Sublime Text
*.sublime-project # Sublime Text
*.tmp # Temporary files
*.~ # Temp files from editors