73 lines
646 B
Text
73 lines
646 B
Text
# Google Cloud Build ignore file
|
|
# Similar to .dockerignore but for Cloud Build
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.github
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.so
|
|
*.egg
|
|
*.egg-info
|
|
dist
|
|
build
|
|
venv
|
|
env
|
|
ENV
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Environment files (will be handled separately)
|
|
env_*.env
|
|
.env.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
local/logs/
|
|
|
|
# Tests
|
|
tests/
|
|
.pytest_cache
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Documentation
|
|
docs/
|
|
*.md
|
|
README.txt
|
|
LICENSE.txt
|
|
|
|
# Local development files
|
|
local/
|
|
*.txt
|
|
!requirements.txt
|
|
|
|
# Debug files
|
|
debug/
|
|
test-chat/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Build artifacts
|
|
*.zip
|
|
release.zip
|