Some checks failed
CI / skip-ci-check (pull_request) Successful in 1m4s
CI / lint-and-type-check (pull_request) Has been cancelled
CI / python-lint (pull_request) Has been cancelled
CI / test-backend (pull_request) Has been cancelled
CI / build (pull_request) Has been cancelled
CI / secret-scanning (pull_request) Has been cancelled
CI / dependency-scan (pull_request) Has been cancelled
CI / sast-scan (pull_request) Has been cancelled
CI / workflow-summary (pull_request) Has been cancelled
Add on-demand H.264/AAC web playback (RQ, ffmpeg) with API routes and Next.js proxies; extend admin UI with WebPlaybackVideo and shared hooks. Store transcode cache beside pending-photos (WEB_VIDEO_CACHE_DIR / UPLOAD_DIR) and ignore data/web_videos. Centralize FastAPI URL helpers, optional Vite and Next base paths for subfolder deploy, and fix modal reopen by using router.replace when closing the home photo viewer. Include migration, install scripts, deployment doc updates, and CI admin build env tweak. Made-with: Cursor
88 lines
978 B
Plaintext
88 lines
978 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
# Python lib directories (but not viewer-frontend/lib/ or admin-frontend TS lib/)
|
|
lib/
|
|
!viewer-frontend/lib/
|
|
!admin-frontend/src/lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
``````````
|
|
# Database files (keep structure, ignore content)
|
|
*.db
|
|
*.sqlite
|
|
*.db-journal
|
|
data/*.db
|
|
data/*.sqlite
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
temp_face_crop_*.jpg
|
|
|
|
# IDE``````````
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
.history/
|
|
|
|
|
|
# Photo files and large directories
|
|
*.jpg
|
|
*.jpeg
|
|
*.png
|
|
*.gif
|
|
*.bmp
|
|
*.tiff
|
|
*.webp
|
|
dlib/
|
|
*.dat
|
|
*.model
|
|
# Node.js
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/.parcel-cache/
|
|
|
|
# Archive and demo files
|
|
archive/
|
|
demo_photos/
|
|
data/uploads/
|
|
data/thumbnails/
|
|
|
|
|
|
# PM2 ecosystem config (server-specific paths)
|
|
ecosystem.config.js
|
|
data/web_videos/
|