Files
furumi-ng/furumi-node-player
Ultradesu a9a8ee81b8
Publish Metadata Agent Image (dev) / build-and-push-image (push) Successful in 1m22s
Publish Node Player Image (dev) / build-and-push-image (push) Failing after 29s
Publish Web Player Image (dev) / build-and-push-image (push) Has been cancelled
fix(node-player): load cover art via axios with Bearer token
Cover images were loaded via <img src> which doesn't include the
Authorization header, resulting in 401 from the Rust API. Now covers
are fetched through axios as blobs and displayed via object URLs.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 15:39:52 +01:00
..
2026-03-19 15:47:21 +03:00

auth-app

Проект состоит из двух частей:

  • client - Vite + React + TypeScript
  • server - Express + TypeScript + OIDC авторизация

Запуск

  1. Скопируй server/.env.example в server/.env и заполни OIDC параметры.
    • Если нужно запустить без авторизации, поставь DISABLE_AUTH=true (OIDC параметры тогда не требуются).
  2. В одном терминале:
    • cd server
    • npm run dev
  3. В другом терминале:
    • cd client
    • npm run dev

Клиент откроется на http://localhost:5173, сервер на http://localhost:3001.