-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.template
More file actions
51 lines (39 loc) · 1.28 KB
/
.env.template
File metadata and controls
51 lines (39 loc) · 1.28 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
# Puerto del API Gateway
PORT=3002
# Configuración del servicio de autenticación
AUTH_HOST=localhost
AUTH_PORT=3001
AUTH_PROTOCOL=http
# Frontend URL
FRONTEND_URL=http://localhost:5173
# Azure Authentication
AUTH_AZURE=http://localhost:3001
# User Management Service
USER_MANAGEMENT_HOST=localhost
USER_MANAGEMENT_PORT=3003
USER_MANAGEMENT_AZURE=http://localhost:3003
# Notificaciones Service
NOTIFICACIONES_AZURE=http://localhost:3004
NOTIFICACIONES_PORT=3004
# Materiales Service
MATERIALES_AZURE=http://localhost:3005
MATERIALES_PORT=3005
# JWT Configuration
JWT_SECRET=...
# --- IA Service (local dev) ---
IA_HOST=localhost
IA_PORT=3004
# IA_AZURE=
# --- Firebase Remote Config (Feature Flags) ---
# Firebase Project ID (from web configuration)
FIREBASE_PROJECT_ID=wise-feature-flags
# Service account credentials for Admin SDK (backend only)
# Replace with the service account email
FIREBASE_CLIENT_EMAIL=firebase-adminsdk-XXXX@wise-feature-flags.iam.gserviceaccount.com
# Private key in a single line with literal \n for line breaks
# Copy from the service account JSON and keep the \n.
# Example:
# FIREBASE_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nMIIEv...\n...\n-----END PRIVATE KEY-----\n"
FIREBASE_PRIVATE_KEY=""
# Feature flags cache refresh interval (ms)
FEATURE_FLAGS_REFRESH_MS=5000