- Added new OIDC configuration options in `.env.example`. - Expanded documentation in `AGENTS.md` to include OIDC endpoints and admin UI. - Updated ReUI skill version and component count from 17 to 20 across various documentation files. - Enhanced `README.md` and other related files to reflect the new component structure and usage guidelines. Co-authored-by: Cursor <[email protected]>
33 lines
1021 B
Bash
33 lines
1021 B
Bash
# Database
|
|
DATABASE_URL=sqlite:data/app.db
|
|
|
|
# Auth JWT (access tokens for apps)
|
|
JWT_SECRET=dev-secret-change-me
|
|
JWT_TTL_HOURS=1
|
|
REFRESH_TTL_DAYS=14
|
|
ISSUER=https://auth.shnt.top
|
|
# OIDC IdP (defaults to ISSUER). Optional PEM PKCS8 RSA key — otherwise auto-generated in DB.
|
|
# OIDC_ISSUER=https://auth.shnt.top
|
|
# OIDC_RSA_PRIVATE_KEY=
|
|
|
|
# Bootstrap admin (created on first start if DB empty)
|
|
ADMIN_EMAIL=[email protected]
|
|
ADMIN_PASSWORD=admin
|
|
ADMIN_NAME=Admin
|
|
|
|
# Allowed return_to hosts (comma-separated), e.g. .shnt.top or full origins
|
|
RETURN_TO_ALLOWLIST=.shnt.top,localhost,private,http://localhost:5173,http://localhost:5174
|
|
|
|
# ReUI PRO (apps/web/components.json → @reui Authorization)
|
|
# Ключ: https://reui.io/docs/license-setup — класть в apps/web/.env.local (gitignored)
|
|
REUI_LICENSE_KEY=
|
|
|
|
# Local app URLs for SSO Open (apps/web/.env.local)
|
|
# VITE_VPS_APP_URL=http://localhost:5173
|
|
# VITE_RETURN_TO_ALLOWLIST=.shnt.top,localhost,http://localhost:5173
|
|
|
|
# Server
|
|
SERVER_PORT=8080
|
|
STATIC_DIR=
|
|
LOG_LEVEL=info
|