All checks were successful
CI / skip-ci-check (pull_request) Successful in 16s
CI / lint-and-type-check (pull_request) Successful in 59s
CI / python-lint (pull_request) Successful in 40s
CI / test-backend (pull_request) Successful in 3m57s
CI / build (pull_request) Successful in 3m36s
CI / secret-scanning (pull_request) Successful in 25s
CI / dependency-scan (pull_request) Successful in 21s
CI / sast-scan (pull_request) Successful in 1m40s
CI / workflow-summary (pull_request) Successful in 14s
- Replace localStorage-based dev mode with VITE_DEVELOPER_MODE env var - Remove setDeveloperMode function and localStorage logic - Update Settings page to show status instead of toggle - Add VITE_DEVELOPER_MODE to vite-env.d.ts type definitions - Update .env_example with developer mode documentation Developer mode is now controlled by setting VITE_DEVELOPER_MODE=true in admin-frontend/.env file (requires rebuild to take effect)
11 lines
263 B
Plaintext
11 lines
263 B
Plaintext
# Admin frontend env (copy to ".env" )
|
|
|
|
# Backend API base URL (must be reachable from the browser)
|
|
VITE_API_URL=
|
|
|
|
# Enable developer mode (shows additional debug info and options)
|
|
# Set to "true" to enable, leave empty or unset to disable
|
|
VITE_DEVELOPER_MODE=
|
|
|
|
|