-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.env.production.example
More file actions
39 lines (30 loc) · 1.31 KB
/
.env.production.example
File metadata and controls
39 lines (30 loc) · 1.31 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
# Production Environment Variables for Anode
#
# Copy this file to `.env.production` and fill in your actual production values.
# All of these variables are REQUIRED for production builds.
#
# The build will fail if any of these are not set, preventing accidental
# deployments with development defaults.
# OAuth/OIDC Authentication endpoint
# Example: https://auth.yourdomain.com/oidc
VITE_AUTH_URI="https://your-auth-provider.com/oidc"
# OAuth client ID for this application
# Example: prod-anode-client-id
VITE_AUTH_CLIENT_ID="your-production-client-id"
# OAuth redirect URI - must match your app's production URL
# Example: https://app.yourdomain.com/oidc
VITE_AUTH_REDIRECT_URI="https://your-app-domain.com/oidc"
# WebSocket URL for LiveStore synchronization
# Example: wss://sync.yourdomain.com
VITE_LIVESTORE_SYNC_URL="wss://your-sync-endpoint.com"
# URI for iframe-based outputs (e.g., interactive visualizations)
# Example: https://output.yourdomain.com
VITE_IFRAME_OUTPUT_URI="https://your-output-domain.com"
# Additional production-specific variables (not validated by build)
# These can be added as needed:
# Runtime command (if different from default)
# VITE_RUNTIME_COMMAND="your-production-runtime-command"
# Logging configuration
# RUNT_LOG_LEVEL=ERROR
# RUNT_DISABLE_CONSOLE_LOGS=true
ENABLE_LIVESTORE_DEVTOOLS=true