-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
51 lines (40 loc) · 791 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
# Ignore Python virtual environment
.venv/
venv/
.next/
# Ignore root-specific files
/requirements.txt
/notes.txt
/package-lock.json
/yolov5s.pt
/key.json
# Ignore .idea directory
.idea/
# Ignore node_modules directory
node_modules/
# Ignore uploads directory
uploads/
# Ignore Python compiled files
*.pyc
__pycache__/
# Ignore combined and cropped books directories
combined_images/
cropped_books/
# Ignore log files
*.log
# Ignore environment variables
credentials.json
key.json
# Ignore frontend build directory
my-app/build/
my-app/node_modules/
my-app/functions/
my-app/firebase*
my-app/.firebaserc
my-app/firestore.rules
my-app/next.config.js
my-app/next.config.mjs
my-app/middleware
my-app/context
# Ignore backend-specific files
backend/scripts/test_mongodb_connection.py