amazon-transcreation/.gitignore
DJP 521f0447bd Add TM and reference data files to git for server deployment
The storage/amazon/ directory (TM files for 12 locales + reference files)
was excluded by .gitignore, causing the production server to have no TM
data after deployment. Updated .gitignore to track storage/amazon/ so
git pull on the server brings in all 153 TM and reference files.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-10 19:09:45 -04:00

53 lines
489 B
Text

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
dist/
build/
.eggs/
venv/
.venv/
# Environment
.env
.env.local
.env.*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
# Node
node_modules/
.next/
out/
# Storage (keep structure, ignore uploaded files)
storage/*
!storage/.gitkeep
!storage/amazon/
# OS
.DS_Store
Thumbs.db
# Docker
docker-compose.override.yml
# SSL certs
nginx/ssl/*.pem
nginx/ssl/*.key
nginx/ssl/*.crt
# Test
.coverage
htmlcov/
.pytest_cache/
# Misc
*.log
*.bak