a154bc7978
- Add video_notes table and agent_queue table for persistent notes and AI agent tasks
- Add API endpoints: POST/GET /api/notes/{id}, POST /api/notes/migrate, agent queue endpoints
- Rebuild frontend: fix duplicate loadVideos(), non-blocking localStorage migration, notes UI
- Switch pip install to Tsinghua mirror for faster downloads in China
- Add backend/sync_rotation.json to .gitignore (runtime state)
26 lines
358 B
Plaintext
26 lines
358 B
Plaintext
# Database and logs
|
|
*.db
|
|
*.db-journal
|
|
*.log
|
|
|
|
# Python virtual environment & cache
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
.pytest_cache/
|
|
|
|
# Node dependencies and build output
|
|
node_modules/
|
|
dist/
|
|
.svelte-kit/
|
|
|
|
# User config & environment secrets
|
|
config/cookies.txt
|
|
.env
|
|
.env.*
|
|
.DS_Store
|
|
token.pickle
|
|
config/client_secret.json
|
|
config/token.pickle
|
|
backend/sync_rotation.json
|