Adds the full Django application layer on top of sportstime_parser: - core: Sport, Team, Stadium, Game models with aliases and league structure - scraper: orchestration engine, adapter, job management, Celery tasks - cloudkit: CloudKit sync client, sync state tracking, sync jobs - dashboard: staff dashboard for monitoring scrapers, sync, review queue - notifications: email reports for scrape/sync results - Docker setup for deployment (Dockerfile, docker-compose, entrypoint) Game exports now use game_datetime_utc (ISO 8601 UTC) instead of venue-local date+time strings, matching the canonical format used by the iOS app. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
67 lines
577 B
Plaintext
67 lines
577 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 environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Output and logs
|
|
output/
|
|
logs/
|
|
*.log
|
|
|
|
# Secrets
|
|
*.pem
|
|
.env
|
|
.env.*
|
|
|
|
# Parser state
|
|
.parser_state/
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# Django
|
|
staticfiles/
|
|
media/
|
|
*.sqlite3
|
|
db.sqlite3
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# Docker
|
|
.docker/
|
|
|
|
# Database dumps
|
|
*.sql
|
|
|
|
# Keep .env.example but ignore actual .env files
|
|
!.env.example
|