-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
97 lines (73 loc) · 1.77 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
# ============================
# Environment Variables
# ============================
# Ignore environment variables file containing sensitive information
.env
# ============================
# Operating System Files
# ============================
# macOS specific files
.DS_Store
# Windows specific files
Thumbs.db
ehthumbs.db
# ============================
# IDE and Editor Directories
# ============================
# Visual Studio Code
.vscode/
# JetBrains IDEs (IntelliJ, PyCharm, etc.)
.idea/
# Sublime Text
*.sublime-project
*.sublime-workspace
# Eclipse
.settings/
*.launch
# ============================
# DIRs
# ============================
redis
postgres
mysql
mongodb
mssql
# ============================
# Logs and Temporary Files
# ============================
# Log files
*.log
# Temporary files
*.tmp
*.temp
*.swp
*.swo
*.swn
# ============================
# Dependency Directories
# ============================
# If you add any dependencies in the future (e.g., node_modules for Node.js projects)
# Uncomment the following line if applicable
# node_modules/
# ============================
# Docker Related Files
# ============================
# Docker Compose override files
# Uncomment if you use docker-compose.override.yml for local overrides
# docker-compose.override.yml
# Docker-specific temporary files
docker-compose*.yml.lock
# ============================
# Build and Distribution Files
# ============================
# If you have build artifacts or distribution folders
# Uncomment and modify the following lines as needed
# /build/
# /dist/
# ============================
# Miscellaneous
# ============================
# Ignore any other files or directories you don't want to track
# Add custom patterns below as needed
# Example: Ignore all .bak files
# *.bak