-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
66 lines (47 loc) · 1.65 KB
/
.env.example
File metadata and controls
66 lines (47 loc) · 1.65 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Variables de Entorno para Simulación de Núcleos Atómicos
# Copia este archivo a .env.local para desarrollo local
# ========================================
# CONFIGURACIÓN DE DESARROLLO LOCAL
# ========================================
# Puerto del servidor local (opcional, por defecto 5173)
PORT=5173
# Modo de desarrollo
NODE_ENV=development
# ========================================
# CONFIGURACIÓN DE VERCEL
# ========================================
# URL de la aplicación (automático en Vercel)
VERCEL_URL=https://tu-app.vercel.app
# Entorno de Vercel (preview, production, development)
VERCEL_ENV=production
# Región de Vercel (opcional)
VERCEL_REGION=sfo1
# ========================================
# CONFIGURACIÓN DE BUILD
# ========================================
# Nivel de optimización de WebAssembly (release, debug)
WASM_OPT_LEVEL=release
# Target de WebAssembly (web, bundler, nodejs)
WASM_TARGET=web
# ========================================
# CONFIGURACIÓN DE LA APLICACIÓN
# ========================================
# Tamaño máximo del canvas (opcional)
MAX_CANVAS_WIDTH=1920
MAX_CANVAS_HEIGHT=1080
# FPS objetivo (opcional)
TARGET_FPS=60
# ========================================
# CONFIGURACIÓN DE ANALYTICS (OPCIONAL)
# ========================================
# Vercel Analytics (true/false)
VERCEL_ANALYTICS=true
# Google Analytics ID (opcional)
GA_TRACKING_ID=G-XXXXXXXXXX
# ========================================
# CONFIGURACIÓN DE DEBUG (DESARROLLO)
# ========================================
# Habilitar logs de debug (true/false)
DEBUG_MODE=false
# Mostrar información de performance (true/false)
SHOW_PERFORMANCE=true