-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
31 lines (24 loc) · 931 Bytes
/
.env.example
File metadata and controls
31 lines (24 loc) · 931 Bytes
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
# Server Configuration
NODE_ENV=development
PORT=8080
# Widget Server Configuration
WIDGET_PORT=4444
# Port for widget dev server and production serving (default: 4444)
# Logging
LOG_LEVEL=info
# Options: fatal, error, warn, info, debug, trace
# Session Management
SESSION_MAX_AGE=3600000
# Maximum age in milliseconds (default: 1 hour)
# CORS (for development)
CORS_ORIGIN=*
# In production, set to your specific domain
# Base URL for widget assets - required in production, optional in development (widgets are fetched from this URL instead of local filesystem)
# For Pomerium tunnel: BASE_URL=https://template.first-wallaby-240.pom.run
# For CDN/production: BASE_URL=https://echo-ui.maisonlab.dev
# BASE_URL=
# Build Configuration
# BUILD_CONCURRENCY=4
# Number of parallel widget builds (default: CPU count / 2)
# Local dev only: inline JS/CSS + images, fonts via Google Fonts (npm run dev:inline)
# INLINE_DEV_MODE=true