20 lines
407 B
Plaintext
20 lines
407 B
Plaintext
# Galaxy Strike Online - Game Server Environment
|
|
# Copy to .env and fill in values
|
|
|
|
# Server
|
|
PORT=3002
|
|
NODE_ENV=development
|
|
SERVER_URL=http://localhost:3002
|
|
|
|
# Database
|
|
MONGODB_URI=mongodb://localhost:27017/galaxystrikeonline
|
|
|
|
# Auth
|
|
JWT_SECRET=your-super-secret-jwt-key-change-in-production
|
|
|
|
# API Server URL (for cross-service communication)
|
|
API_SERVER_URL=http://localhost:3001
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|