-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexample.env
More file actions
48 lines (38 loc) · 1.75 KB
/
example.env
File metadata and controls
48 lines (38 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Glow Web Environment Variables
# Copy this file to .env.local and fill in your values
# =============================================================================
# REQUIRED
# =============================================================================
# Breez API key for SDK initialization
# Get your key at: https://breez.technology/sdk/
VITE_BREEZ_API_KEY=your_breez_api_key_here
# =============================================================================
# OPTIONAL
# =============================================================================
# Staging environment password (Preview deployments only)
# When set, users must enter this password to access the app
# VITE_STAGING_PASSWORD=
# Console logging override
# "true" = always enabled, "false" = always disabled
# Default: enabled in dev mode, disabled in production
# VITE_CONSOLE_LOGGING=true
# Passkey Relying Party ID for cross-app passkey sharing
# Enables passkeys created in Glow to work across other apps
# Requires server-side .well-known/webauthn configuration at the rpID domain
# Default: current hostname (passkeys only work on this domain)
# VITE_PASSKEY_RP_ID=keys.breez.technology
# Base path for subpath deployment
# Must include leading and trailing slashes
# Default: / (root)
# VITE_BASE_PATH=/glow/
# =============================================================================
# SERVER
# =============================================================================
# Server host binding
# Use "0.0.0.0" to allow LAN access (e.g., for testing on mobile devices)
# Default: localhost
# VITE_SERVER_HOST=0.0.0.0
# Allowed hosts for the server (comma-separated)
# Required when accessing via IP or custom hostname
# Example: 192.168.1.100,my-dev-machine.local
# VITE_SERVER_ALLOWED_HOSTS=