- Add database fields for language preferences: - Vendor: dashboard_language, storefront_language, storefront_languages - User: preferred_language - Customer: preferred_language - Add language middleware for request-level language detection: - Cookie-based persistence - Browser Accept-Language fallback - Vendor storefront language constraints - Add language API endpoints (/api/v1/language/*): - POST /set - Set language preference - GET /current - Get current language info - GET /list - List available languages - DELETE /clear - Clear preference - Add i18n utilities (app/utils/i18n.py): - JSON-based translation loading - Jinja2 template integration - Language resolution helpers - Add reusable language selector macros for templates - Add languageSelector() Alpine.js component - Add translation files (en, fr, de, lb) in static/locales/ - Add architecture rules documentation for language implementation - Update marketplace-product-detail.js to use native language names 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
182 lines
2.0 KiB
Plaintext
182 lines
2.0 KiB
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
**/.coverage
|
|
**/.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
test-results/
|
|
test-reports/
|
|
|
|
# MkDocs documentation
|
|
site/
|
|
docs/_build/
|
|
|
|
# PyCharm / IntelliJ IDEA
|
|
.idea/
|
|
*.iml
|
|
*.iws
|
|
*.ipr
|
|
|
|
# VS Code
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
*.ipynb_checkpoints/
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Pyre type checker
|
|
.pyre/
|
|
|
|
# pytype
|
|
.pytype/
|
|
|
|
# Cython debug symbols
|
|
cython_debug/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# Database files
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.db-journal
|
|
*.sql
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary documentation/structure files
|
|
*-structure.txt
|
|
temp-*.txt
|
|
*.tmp
|
|
*.temp
|
|
TODO
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.backup/
|
|
*.orig
|
|
|
|
# Static file collections
|
|
staticfiles/
|
|
static_root/
|
|
media/
|
|
media_root/
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# FastAPI specific
|
|
__pypackages__/
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
.dockerignore.local
|
|
*.override.yml
|
|
|
|
# Deployment & Security
|
|
deployment-local/
|
|
*.pem
|
|
*.key
|
|
!*.pub
|
|
secrets/
|
|
credentials/
|
|
|
|
# Alembic
|
|
# Note: Keep alembic/versions/ tracked for migrations
|
|
# alembic/versions/*.pyc is already covered by __pycache__
|
|
.aider*
|
|
|
|
# Node.js / npm
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
tailadmin-free-tailwind-dashboard-template/
|
|
static/shared/css/tailwind.css
|
|
|
|
# Export files
|
|
wizamart_letzshop_export_*.csv
|