- Add PYTHONPATH/DJANGO_SETTINGS_MODULE for Docker environment - Fix gunicorn bind port (8000 instead of 8765) - Add whitenoise for static file serving - Fix JSONL parser: read role/content from event.message.* (nested structure) - Fix session counts (message_count/tool_call_count/error_count were all 0) - Increase DATA_UPLOAD_MAX_MEMORY_SIZE to 50MB for large batch syncs - Add STATIC_ROOT and WhiteNoise middleware for admin CSS - Fix index name length (>30 chars issue) - Replace unique_together with indexes (Django 5.x compatible) - Add graceful degradation for TimescaleDB hypertable creation - Add static_volume/ to .gitignore
14 lines
112 B
Plaintext
14 lines
112 B
Plaintext
__pycache__
|
|
*.pyc
|
|
.venv
|
|
.env
|
|
*.egg-info
|
|
.git
|
|
.pytest_cache
|
|
.mypy_cache
|
|
tests/
|
|
scripts/
|
|
docs/
|
|
db.sqlite3
|
|
db_data
|