-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
69 lines (55 loc) · 1.99 KB
/
Copy path.env.example
File metadata and controls
69 lines (55 loc) · 1.99 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
67
68
69
# ========================================
# LiveWeb - Environment Configuration
# ========================================
# Copy this file to .env and fill in your values
# DO NOT commit .env to version control!
# ========================================
# ----------------------------------------
# Required Configuration
# ----------------------------------------
# Google Gemini API Key (Required)
# Get your API key at: https://aistudio.google.com
GEMINI_API_KEY=your_gemini_api_key_here
# ----------------------------------------
# Server Configuration
# ----------------------------------------
# Port for the Express backend server
# Default: 3001 (3000 is used by latoxicatst-frontend)
PORT=3001
# Node environment
# Options: development, production, test
# Default: development
NODE_ENV=development
# ----------------------------------------
# Optional API Keys
# ----------------------------------------
# These are optional and only needed if you want to use
# these services in your generated applications
# Mapbox API Key (for maps)
# Get your key at: https://www.mapbox.com
# MAPBOX_API_KEY=your_mapbox_key_here
# OpenWeather API Key (for weather data)
# Get your key at: https://openweathermap.org/api
# OPENWEATHER_API_KEY=your_openweather_key_here
# ----------------------------------------
# Advanced Configuration (Optional)
# ----------------------------------------
# CORS allowed origins (comma-separated)
# Default: http://localhost:5173,http://localhost:3000
# CORS_ORIGINS=http://localhost:5173,http://localhost:3000
# Maximum request body size
# Default: 10mb
# MAX_REQUEST_SIZE=10mb
# Gemini API timeout (milliseconds)
# Default: 90000 (90 seconds)
# GEMINI_TIMEOUT=90000
# Enable debug logging
# Default: false
# DEBUG=false
# ----------------------------------------
# Frontend Configuration
# ----------------------------------------
# Note: If you change the backend PORT above,
# you must also update API_BASE_URL in:
# frontend/src/services/api.js
# ----------------------------------------