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
17 lines
591 B
Plaintext
17 lines
591 B
Plaintext
# Admin frontend env (copy to ".env" )
|
|
|
|
# Backend API origin as seen by the browser. Leave empty for local dev: Vite proxies
|
|
# /api to http://127.0.0.1:8000 (see vite.config.ts).
|
|
# Production (same host as admin, proxy at /punim-api/): VITE_API_URL=/punim-api
|
|
VITE_API_URL=
|
|
|
|
# Production subpath for static assets (Vite base + React Router basename).
|
|
# Local dev: leave unset (served at http://localhost:3000/).
|
|
# VITE_BASE_PATH=/punim-admin
|
|
|
|
# Enable developer mode (shows additional debug info and options)
|
|
# Set to "true" to enable, leave empty or unset to disable
|
|
VITE_DEVELOPER_MODE=
|
|
|
|
|