Files
office_translator/.gitignore
sepehr 05c5dfcbbb
Some checks failed
Deploy to Homelab / Deploy Wordly to 192.168.1.151 (push) Has been cancelled
Deploy to Homelab / Deploy Monitoring (if configured) (push) Has been cancelled
fix: add frontend/src/lib/ to git (was ignored by /lib/ pattern)
The root .gitignore had `lib/` which matched frontend/src/lib/,
causing Docker build to fail with "Module not found: Can't resolve
'@/lib/utils'" and '@/lib/i18n'.

Changed to `/lib/` so it only ignores the Python lib at repo root.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 15:17:22 +02:00

77 lines
936 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
/lib/
/lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual Environment
venv/
env/
ENV/
# Environment variables
.env
.env.docker
.env.production
.env.ionos
# Backups
backups/
# IDE
.vscode/
.idea/
*.swp
*.swo
# Uploads and outputs
uploads/
outputs/
temp/
translated_files/
translated_test.*
# Runtime data (users, provider config, glossaries) — managed at runtime, not in git
data/users.json
data/*.db
data/*.sqlite
# Keep these in git (templates/defaults only)
# data/provider_settings.json → commiter uniquement si pas de clés dedans
# data/pricing_overrides.json → OK à commiter
# Logs
*.log
logs/
# UV / UV lock
.venv/
uv.lock
# Test files (only at repo root; keep tests/ folder tracked)
/test_*.py
/test_*.ipynb
# macOS
.DS_Store
# Screenshots and debug files at root
*.png
*.jpg