-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gcloudignore
More file actions
94 lines (81 loc) · 1.08 KB
/
.gcloudignore
File metadata and controls
94 lines (81 loc) · 1.08 KB
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
# .gcloudignore - Exclude files from Cloud Build upload to reduce context size
# This speeds up the build by not uploading unnecessary files
# Version control
.git
.gitignore
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.venv
venv/
ENV/
env/
*.egg-info/
.pytest_cache
.coverage
.tox/
.mypy_cache/
.ruff_cache/
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Build outputs
dist/
build/
*.egg
.eggs/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Documentation
*.md
docs/
README*
# Tests
tests/
test_*.py
*_test.py
# Development files
.env
.env.*
*.log
# ML Model files (if stored locally and not needed for build)
*.pth
*.pt
*.ckpt
*.h5
*.pkl
*.joblib
# Media files (for testing)
*.mp4
*.avi
*.mov
*.jpg
*.jpeg
*.png
*.gif
*.bmp
# Temporary files
tmp/
temp/
*.tmp
# Backend specific (adjust based on what's needed in Docker build)
backend/.venv/
backend/__pycache__/
backend/test_*.py
backend/*.log
backend/.coverage
backend/.pytest_cache/
# Browser extension build artifacts
browser-extension/dist/
browser-extension/node_modules/
browser-extension/coverage/