-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
83 lines (60 loc) · 1.23 KB
/
.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
78
79
80
81
82
83
# Ignore compiled Python files
*.pyc
# Ignore Python virtual environment
venv/
# Ignore local development settings
*.env
# Ignore database files
db.sqlite3
# Ignore media and static files
media/
static/
# Ignore sensitive or environment-specific information
.env.local
.env.production
# Ignore IDE and editor specific files
.idea/
.vscode/
*.sublime-workspace
*.sublime-project
# Ignore Django migration files
**/migrations/
# Ignore log files
*.log
# Ignore secret key file
secret_key.txt
# Ignore local configuration
local_settings.py
# Ignore node_modules directory if you are using frontend libraries
node_modules/
# Ignore compiled JavaScript files
*.min.js
# Ignore cache files
__pycache__/
.cached_data/
# Ignore temporary files
*.swp
*.swo
# Ignore user-specific project settings
/.vscode/
*.iml
*.pydevproject
# Ignore Mac specific files
.DS_Store
# Ignore editor backup files
*~
# Ignore pipenv virtual environment
Pipfile.lock
# Ignore Docker related files if you are using Docker
Dockerfile
docker-compose.yml
# Ignore pytest cache directory
.pytest_cache/
# Ignore coverage reports
htmlcov/
# Ignore .gitignore itself and any other custom ignore files
.gitignore
!.gitignore
# Ignore database configuration
/config/
*.conf