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>
53 lines
489 B
Text
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
|