-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
40 lines (32 loc) · 1.32 KB
/
env.example
File metadata and controls
40 lines (32 loc) · 1.32 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
# Redis Configuration
REDIS_URL=redis://localhost:6379
# For shared Redis instance, use:
# REDIS_URL=redis://username:password@host:port
# Engine Configuration
ENGINE_URL=http://localhost:3000
# Node Environment
NODE_ENV=development
# Admin Dashboard
ADMIN_PORT=4000
# Slack Integration (optional)
# SLACK_BOT_TOKEN=xoxb-your-bot-token
# SLACK_APP_TOKEN=xapp-your-app-token
# SLACK_SIGNING_SECRET=your-signing-secret
# SLACK_DEFAULT_CHANNEL=#mymcp-game
# SLACK_DASHBOARD_CHANNEL=#mymcp-dashboard
# === WSL/Windows CORS Configuration ===
# For WSL users: Include your current WSL IP in CORS origins
# Get WSL IP: hostname -I | awk '{print $1}'
# Example: CORS_ORIGIN=http://localhost:3001,http://localhost:5173,http://172.20.80.209:5173
CORS_ORIGIN=http://localhost:3001,http://localhost:5173
# Player Dashboard Engine URL (for WSL, use WSL IP)
# Example: VITE_ENGINE_URL=http://172.20.80.209:3000
VITE_ENGINE_URL=http://localhost:3000
# === WSL/Windows Users ===
# For WSL users: Replace YOUR_WSL_IP with your actual WSL IP address
# Get WSL IP: hostname -I | awk '{print $1}'
# Example: CORS_ORIGIN=http://localhost:3001,http://localhost:5173,http://172.20.80.209:5173
# Example: VITE_ENGINE_URL=http://172.20.80.209:3000
# LLM API Keys (required for AI features)
ANTHROPIC_API_KEY=your_anthropic_key_here
OPENAI_API_KEY=your_openai_key_here