-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
57 lines (47 loc) · 1.38 KB
/
.env.example
File metadata and controls
57 lines (47 loc) · 1.38 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
# =============================================================================
# EVE Co-Pilot Configuration
# Copy this file to .env and fill in your values
# =============================================================================
# --- Database ---
DB_HOST=localhost
DB_PORT=5432
DB_NAME=eve_sde
DB_USER=eve
DB_PASSWORD=your_db_password_here
# Docker Compose variant:
POSTGRES_DB=eve_sde
POSTGRES_USER=eve
POSTGRES_PASSWORD=your_db_password_here
# --- EVE SSO (https://developers.eveonline.com) ---
EVE_CLIENT_ID=your_eve_client_id
EVE_CLIENT_SECRET=your_eve_client_secret
EVE_CALLBACK_URL=http://localhost:8000/api/auth/callback
# --- API Server ---
API_HOST=0.0.0.0
API_PORT=8000
CORS_ORIGINS=["http://localhost:5173","http://localhost:3003"]
# --- AI Copilot (optional) ---
ANTHROPIC_API_KEY=your_anthropic_api_key
ANTHROPIC_MODEL=claude-sonnet-4-20250514
OPENAI_API_KEY=your_openai_api_key
COPILOT_HOST=0.0.0.0
COPILOT_PORT=8001
# --- Redis ---
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=your_redis_password
# --- Frontend ---
VITE_API_URL=http://localhost:8001
VITE_WS_URL=ws://localhost:8001
FRONTEND_PORT=5173
# --- Discord (optional) ---
DISCORD_WEBHOOK_URL=
# --- Market Hunter ---
HUNTER_MIN_ROI=15.0
HUNTER_MIN_PROFIT=500000
HUNTER_TOP_CANDIDATES=20
HUNTER_DEFAULT_ME=10
# --- War Room ---
WAR_DATA_RETENTION_DAYS=30
WAR_DOCTRINE_MIN_FLEET_SIZE=10
WAR_HEATMAP_MIN_KILLS=5