-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.env.example
More file actions
43 lines (32 loc) 路 1.13 KB
/
Copy pathdocker-compose.env.example
File metadata and controls
43 lines (32 loc) 路 1.13 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
# 馃攼 MTG Deck Scanner - Environment Configuration
# Copy this file to .env and fill in your actual values
# 馃 OpenAI Configuration (Required for web app)
OPENAI_API_KEY=your_openai_api_key_here
# 馃 Discord Bot Configuration (Required for Discord bot)
DISCORD_BOT_TOKEN=your_discord_bot_token_here
# 馃寪 Web Application Configuration
NODE_ENV=production
PORT=3001
CORS_ORIGIN=http://localhost:5173
# 馃帹 Frontend Configuration
VITE_API_URL=http://localhost:3001/api
# 馃搳 Database Configuration (Optional - future feature)
DATABASE_URL=postgresql://user:password@localhost:5432/mtg_scanner
# 馃摟 Email Configuration (Optional - future feature)
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_PASS=your_app_password
# 馃攼 JWT Configuration (Optional - future feature)
JWT_SECRET=your_super_secret_jwt_key_here
JWT_EXPIRES_IN=7d
# 馃搳 Redis Configuration (Optional)
REDIS_URL=redis://localhost:6379
# 馃惓 Docker Configuration
COMPOSE_PROJECT_NAME=mtg-scanner
# 馃敡 Debug Configuration
DEBUG=false
LOG_LEVEL=info
# 馃寪 Production Domain (for deployment)
DOMAIN=your-domain.com