-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
77 lines (58 loc) · 992 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
73
74
75
76
77
# Ignore database files
db.sqlite3
# Ignore log files
*.log
# Ignore environment-specific settings
.env
# Ignore Python bytecode files
__pycache__/
*.pyc
# Ignore development and local configuration
*.swp
*.swo
*.swn
*.swm
*.swl
# Ignore virtual environment directory
venv/
env/
.env/
# Ignore user uploads and media files
media/
# Ignore generated files and directories
node_modules/
dist/
build/
# Ignore Python package build directories
*.egg-info/
dist/
.build/
# Ignore macOS specific files
.DS_Store
# Ignore editor/IDE files
.idea/
.vscode/
# Ignore migration files for database changes
migrations/
# Ignore local settings
local_settings.py
# Ignore pipenv/virtualenv files
Pipfile
Pipfile.lock
.venv/
# Ignore cache files
__pycache__/
.cache/
.cached_data/
# Ignore database backup files
*.backup
*.bak
# Ignore system files
*.swp
*.swo
# Ignore compiled files
*.pyc
# Ignore test coverage reports
htmlcov/
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/