-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
49 lines (38 loc) · 1.24 KB
/
Copy path.env.example
File metadata and controls
49 lines (38 loc) · 1.24 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
# Boba Vim Environment Variables Example
# Copy this file to .env and update the values
# Application Configuration
PORT=8080
ENV=development
BASE_URL=http://localhost:8080
# Database Configuration
DATABASE_URL=boba_vim.db
# Session Configuration
SESSION_SECRET=your-secret-key-change-in-production
# Game Configuration
PEARL_POINTS=100
TARGET_SCORE=500
MAX_GAME_TIME=480
MOVE_COOLDOWN=100
# Logging Configuration
LOG_LEVEL=debug
FRONTEND_LOG_LEVEL=debug
# Admin Panel Configuration (default for local development)
ADMIN_USERNAME=test
ADMIN_PASSWORD=test
# Production Environment Variables
# Uncomment and set these for production deployment
# DATABASE_URL=your-production-database-url
# SESSION_SECRET=your-production-session-secret-at-least-32-characters
# ADMIN_USERNAME=your-admin-username
# ADMIN_PASSWORD=your-secure-admin-password
# Email Configuration (optional - for password reset, notifications)
RESEND_API_KEY=your-resend-api-key-here
FROM_EMAIL=noreply@yourdomain.com
# Payment Configuration (optional - leave empty for local development)
STRIPE_SECRET_KEY=your-stripe-secret-key
STRIPE_WEBHOOK_SECRET=your-stripe-webhook-secret
# Production settings
# ENV=production
# BASE_URL=https://yourdomain.com
# LOG_LEVEL=info
# FRONTEND_LOG_LEVEL=warn