CI / skip-ci-check (push) Successful in 18s
CI / docker-ci (push) Successful in 19s
CI / secret-scan (push) Successful in 32s
CI / viewer-unit (push) Successful in 2m42s
CI / admin-unit (push) Successful in 3m22s
CI / e2e (push) Successful in 4m17s
CI / skip-ci-check (pull_request) Successful in 18s
CI / docker-ci (pull_request) Successful in 21s
CI / secret-scan (pull_request) Successful in 31s
CI / viewer-unit (pull_request) Successful in 1m30s
CI / admin-unit (pull_request) Successful in 2m26s
CI / e2e (pull_request) Failing after 7m8s
17 lines
591 B
Bash
17 lines
591 B
Bash
# 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=
|
|
|
|
|