-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
210 lines (173 loc) · 3.99 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# ===============================
# Global Settings
# ===============================
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# ===============================
# Python Artifacts (Backend)
# ===============================
# Byte-compiled / optimized / DLL files
**/__pycache__/
**/*.py[cod]
**/*.egg-info/
*$py.class
# C extensions
/backend/*.so
# ===============================
# Node Modules (Frontend)
# ===============================
# Dependencies
**/node_modules/
# ===============================
# Build Artifacts
# ===============================
# Next.js build output (Frontend)
**/.next/
**/out/
**/.empty/
# Vercel serverless functions cache
/frontend/.vercel/
# Django static files (Backend)
**/static/
**/media/
# ===============================
# Environment Variables
# ===============================
# Environment variable files (Global)
.env
*.env
# Frontend environment variables
/frontend/.env
/frontend/.env.local
/frontend/.env.development.local
/frontend/.env.test.local
/frontend/.env.production.local
# Backend environment variables
/backend/.env
# ===============================
# Databases (Backend)
# ===============================
# SQLite database
/backend/db.sqlite3
/backend/db.sqlite3-journal
# Django test database
/backend/test_db.sqlite3
/backend/test_db.sqlite3-journal
# ===============================
# Logs
# ===============================
# Log files (Global)
logs/
*.log
*.log.*
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# ===============================
# OS & System Files
# ===============================
# macOS files
.DS_Store
# Windows files
Thumbs.db
ehthumbs.db
# Linux temporary files
*~
# ===============================
# Virtual Environments (Backend)
# ===============================
# Virtualenv and virtualenvwrapper
/backend/venv/
backend/ENV/
backend/env/
backend/.venv/
# ===============================
# Package Management
# ===============================
# Pipenv (Backend)
/backend/Pipfile
/backend/Pipfile.lock
# Poetry (Backend)
/backend/poetry.lock
/backend/poetry.toml
# Bun lock file (Frontend)
/frontend/bun.lockb
# Uncomment the following lines if you want to ignore lock files (not generally recommended)
# package-lock.json
# yarn.lock
# ===============================
# IDE & Editor Settings
# ===============================
# VSCode
.vscode/
.history/
# JetBrains IDEs
.idea/
*.iml
# Sublime Text
*.sublime-project
*.sublime-workspace
# Vim
*.swp
*.swo
# Emacs
*~
# ===============================
# Testing & Coverage
# ===============================
# Coverage directory used by tools like Jest (Frontend)
/frontend/coverage/
# Unit test / coverage reports (Backend)
/backend/htmlcov/
/backend/.coverage
/backend/.coverage.*
/backend.cache
/backend/nosetests.xml
/backend/coverage.xml
/backend/*.cover
/backend/*.py,cover
# ===============================
# Linter Caches & Configurations
# ===============================
# Ruff cache
.ruff_cache/
# ===============================
# Temporary Files
# ===============================
# Temporary files (Global)
**/.empty/
tmp/
temp/
/backend/tmp/
/backend/temp/
/frontend/tmp/
/frontend/temp/
# ===============================
# Deployment Artifacts
# ===============================
# Gunicorn and uWSGI logs (Backend)
/backend/gunicorn.log
/backend/gunicorn-access.log
/backend/gunicorn-error.log
# uWSGI config and logs (Backend)
/backend/uwsgi.ini
/backend/uwsgi_params
/backend/*.pid
/backend/*.sock
# Heroku-specific files (Backend)
/backend/.heroku/
# ===============================
# Miscellaneous
# ===============================
# Build scripts and directories
/frontend/build/
/frontend/public/static/
# Ignore static files generated during build (Backend)
/backend/staticfiles/
# Ignore mock files (if not to be committed)
/frontend/mock/
# HTTPS Certificate
/frontend/certificates/
# ===============================
# Custom Ignored Files
# ===============================
# Add any additional files or directories you wish to ignore here