74 lines
756 B
Text
74 lines
756 B
Text
# Docker ignore file for Gateway
|
|
# Excludes unnecessary files from Docker build context
|
|
|
|
# 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 (env_gcp.env will be copied as .env by workflow)
|
|
env_*.env
|
|
.env.local
|
|
# Note: .env is NOT ignored - it will be created from env_gcp.env by the workflow
|
|
|
|
# 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
|