-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
72 lines (53 loc) · 1005 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
62
63
64
65
66
67
68
69
70
71
72
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# IDE files
.vscode/
.idea/
# Dependency directories
.venv/
venv/
env/
env.bak/
# Compiled Python files
*.pyc
*.pyo
*.pyd
# Logs and temporary files
*.log
*.swp
*.swo
*.tmp
# Database files
*.db
*.sqlite3
# Generated files
/generated/
# Environment-specific files
.env
.env.*
# Ignore any file or directory named "secret"
secret
# Ignore any file or directory named "config"
config
# Ignore any file or directory named "credentials"
credentials
# Ignore any file or directory named "keys"
keys
# Ignore any file or directory named "uploads"
uploads
# Ignore any file or directory named "media"
media
# Ignore any file or directory named "logs"
logs
# Ignore any file or directory named "tmp"
tmp
# Ignore any file or directory named "cache"
cache
# Ignore any file or directory named "dist"
dist
# Ignore any file or directory named "build"
build
# Ignore any file or directory named "node_modules"
node_modules/