Files
furumi-ng/furumi-node-player/README.md
Boris Cherepanov 4f239c2546
All checks were successful
Publish Metadata Agent Image / build-and-push-image (push) Successful in 1m6s
Publish Web Player Image / build-and-push-image (push) Successful in 1m14s
Publish Server Image / build-and-push-image (push) Successful in 2m9s
feat: added disable auth mode
2026-03-19 15:47:21 +03:00

20 lines
718 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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`.