22 lines
420 B
Plaintext
22 lines
420 B
Plaintext
# Galaxy Strike Online - API Server Environment
|
|
# Copy to .env and fill in values
|
|
|
|
# Server
|
|
PORT=3001
|
|
NODE_ENV=development
|
|
|
|
# Database
|
|
MONGODB_URI=mongodb://localhost:27017/galaxystrikeonline
|
|
|
|
# Auth
|
|
JWT_SECRET=your-super-secret-jwt-key-change-in-production
|
|
|
|
# Game Server URL (for server browser)
|
|
GAME_SERVER_URL=http://localhost:3002
|
|
|
|
# Client URL (for CORS)
|
|
CLIENT_URL=http://localhost:3000
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|