mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 12:32:10 +01:00
- Improved date parsing in fetch_and_store_chat_data to support multiple formats and added error logging for unparseable dates. - Enhanced parse_and_store_transcript_messages to handle empty transcripts and expanded message pattern recognition for both User and Assistant. - Implemented intelligent splitting of transcripts based on detected patterns and timestamps, with fallback mechanisms for unrecognized formats. - Updated documentation for Celery and Redis setup, troubleshooting, and project structure. - Added markdown linting configuration and scripts for code formatting. - Updated Nginx configuration to change the web server port. - Added xlsxwriter dependency for Excel file handling in project requirements.
57 lines
666 B
Plaintext
57 lines
666 B
Plaintext
# Python virtual environment
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Static files collected by Django
|
|
staticfiles/
|
|
dashboard_project/staticfiles/
|
|
|
|
# Media files
|
|
media/
|
|
dashboard_project/media/
|
|
|
|
# Python cache files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Database files
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# Django migration files
|
|
*/migrations/*.py
|
|
!*/migrations/__init__.py
|
|
|
|
# Node modules (if you use npm/yarn for frontend)
|
|
node_modules/
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# IDE specific files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Ignore all SQLite files:
|
|
*.sqlite3
|
|
*.sqlite
|
|
|
|
# Ignore markdown
|
|
*.md
|