20 lines
705 B
Bash
20 lines
705 B
Bash
# PocketBase server URL
|
|
VITE_PB_URL=http://localhost:8090
|
|
|
|
# Application name (used in UI and document titles)
|
|
VITE_APP_NAME=ShopProQuote
|
|
|
|
# GlitchTip DSN for error tracking (set in production for step 3.1)
|
|
VITE_GLITCHTIP_DSN=
|
|
|
|
# Toggle AI assistant features on/off
|
|
VITE_AI_ENABLED=true
|
|
|
|
# Runtime environment: development / production
|
|
VITE_ENV=development
|
|
|
|
# ─── IMPORTANT ──────────────────────────────────────────────
|
|
# Server-side secrets (DEEPSEEK_API_KEY, PB_SMTP_*, etc.)
|
|
# MUST NEVER be prefixed with VITE_ — Vite ships every VITE_*
|
|
# variable into the client bundle where it is visible to users.
|