File size: 662 Bytes
f59bac9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Ignore compiled Python files
*.pyc
*.pyo
__pycache__/

# Ignore local development settings
.env

# Ignore the virtual environment directory
venv/

# Ignore the pipenv virtual environment
Pipfile
Pipfile.lock

# Ignore generated files
*.pyc
*.pyo
*.pyd
*.so
*.egg-info/
dist/
build/
*.egg

# Ignore IDE and editor files
.idea/
.vscode/
*.sublime-project
*.sublime-workspace

# Ignore system-specific files
.DS_Store
Thumbs.db

# Ignore logs and other generated data
logs/
*.log

# Ignore any sensitive or private information
config.ini
secrets.json

# Ignore cache and temporary files
*.swp
*.swo
*.bak
*.cache
*.tmp

# Ignore dependency directories
lib/
libs/