- FastAPI backend with news scraping from Yahoo Japan - SQLite database for article storage - Web UI with dark mode, article modal, statistics dashboard - Docker support for containerized deployment - API endpoints: /api/today, /api/news, /api/collect-news, /api/dates, /api/download-json - Auto-collect feature when requesting today news - Content filtering for articles without body text
25 lines
188 B
Plaintext
25 lines
188 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
venv/
|
|
.env
|
|
|
|
# Database
|
|
*.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Debug/Test files
|
|
debug_output.txt
|
|
test_*.py
|
|
|
|
# Generated files
|
|
*.json
|
|
|
|
# OS
|
|
.DS_Store
|