# .gcloudignore
# Excludes files from Cloud Build upload

# Git
.git/
.gitignore

# Dependencies (will be installed during build)
node_modules/
**/node_modules/

# Python virtual environments
venv/
.venv/
**/venv/
**/.venv/
__pycache__/
**/__pycache__/
*.pyc
.mypy_cache/
.pytest_cache/
.ruff_cache/
**/.mypy_cache/
**/.pytest_cache/
**/.ruff_cache/
.coverage
coverage.xml
**/.coverage
**/coverage.xml

# Development files
.env
.env.local
.env.*.local

# IDE
.vscode/
.idea/

# Build outputs (will be generated during build)
.next/
**/.next/
.next-prod/
**/.next-prod/
out/
**/out/
dist/
**/dist/
build/
**/build/
*.tsbuildinfo

# Documentation and artifacts
docs/
.gemini/
*.md
!README.md
tmp/
temp/
data/
**/backend.log
**/artifacts/

# Test files
tests/
test/
**/*.test.ts
**/*.test.tsx

# Local development files
*.log
.DS_Store
Thumbs.db

# Mobile Native (Not needed for Web Container)
android/
ios/
capacitor.config.ts

# Large Assets/Misc
assets/
# deploy/
*.sh
*.ps1
