2482a1fe58
- Add AGENTS.md for agentic coding guidelines - Add Oneupload and Smoothpre video player downloaders - Add MetadataEnrichment service with Kitsu API fallback - Add tests for metadata enrichment and provider detection - Update .gitignore to ignore runtime config files
57 lines
511 B
Plaintext
57 lines
511 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
.venv
|
|
|
|
# FastAPI
|
|
uploads/
|
|
streams/
|
|
downloads/
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Project data
|
|
data/
|
|
favorites.json
|
|
*.db
|
|
*.sqlite
|
|
ohm_streaming.db
|
|
|
|
# Config (runtime-generated)
|
|
config/anime_sama_domain.json
|
|
config/metadata_cache.json
|
|
data/
|
|
favorites.json
|
|
*.db
|
|
*.sqlite
|
|
ohm_streaming.db
|