-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gcloudignore
More file actions
49 lines (44 loc) · 854 Bytes
/
.gcloudignore
File metadata and controls
49 lines (44 loc) · 854 Bytes
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
# Git & Config
.git/
.gitignore
.env
.commit.txt
dev.sh
setup_sa.sh
docs/
.beads/
GEMINI.md
README.md
# Backend Binaries
backend/server
backend/*.exe
backend/*.test
backend/*.out
# Frontend - Selective Ignores
# We want to keep the folder structure 'frontend/build/web' intact.
# So we ignore the specific siblings of 'build' and 'web' that are heavy.
# Ignore Source & Config
frontend/lib/
frontend/test/
frontend/android/
frontend/ios/
frontend/linux/
frontend/macos/
frontend/windows/
frontend/.dart_tool/
frontend/.idea/
frontend/pubspec.lock
frontend/pubspec.yaml
frontend/analysis_options.yaml
frontend/*.iml
# Ignore other build artifacts, but KEEP frontend/build/web
frontend/build/native_assets/
frontend/build/app/
frontend/build/ios/
frontend/build/linux/
frontend/build/macos/
frontend/build/windows/
# Ignore IDEs
.vscode/
.idea/
*.iml