-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.gitignore
60 lines (47 loc) · 783 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
# Ignore compiled Python files
__pycache__/
*.pyc
*$py.class
# Ignore the virtual environment folder
venv/
env/
# Ignore database files
db.sqlite3
db.sqlite3-journal
# Ignore log files
*.log
# Ignore temporary files
*.tmp
# Ignore sensitive data configuration
*.env
settings_local.py
# Ignore generated migration files
*/migrations/
# Ignore IDE-specific files and folders
.vscode/
*.code-workspace
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Ignore pipenv virtual environment
Pipfile.lock
# Ignore coverage reports
htmlcov/
# Ignore cache files
__pycache__/
.cache/
.caches/
# Ignore test database
test_db.sqlite3
# Ignore system and backup files
.DS_Store
Thumbs.db
# Sphinx - Ignore generated and static files and folders
build/
_build/
_templates/
*.rst.inc
*.html