-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
48 lines (39 loc) · 840 Bytes
/
.gitignore
File metadata and controls
48 lines (39 loc) · 840 Bytes
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
# ========== Node.js ==========
# Ignore frontend dependency folder
frontend/node_modules/
# npm temporary files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# ========== Python ==========
# Python bytecode cache
__pycache__/
*.py[cod]
*.pyo
# Python virtual environments (if used)
venv/
env/
# ========== Docker ==========
# Ignore temporary Docker files (if any appear)
*.pid
*.seed
*.pid.lock
# ========== System ==========
# IDE/editor config files
.vscode/
.idea/
# macOS and Windows system files
.DS_Store
Thumbs.db
# ========== Git ==========
# Git hooks and temporary merge files
*.orig
# ========== Logs ==========
*.log
# ========== Secret configs (optional) ==========
# Ignore .env files if storing local secrets
.env
.env.*
# ========== Build outputs (if building frontend) ==========
frontend/dist/
frontend/build/