41 lines
986 B
Bash
41 lines
986 B
Bash
# Development Environment Variables for Local Build
|
|
# These are used when running build scripts outside of Docker containers
|
|
|
|
NODE_ENV=development
|
|
PORT=3000
|
|
|
|
# Database Configuration (Docker containers)
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=serpentrace
|
|
DB_USERNAME=postgres
|
|
DB_PASSWORD=postgres
|
|
|
|
# Redis Configuration (Docker containers)
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_URL=redis://localhost:6379
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=dev_jwt_secret_change_in_production
|
|
JWT_EXPIRATION=24h
|
|
JWT_REFRESH_EXPIRATION=7d
|
|
|
|
# MinIO Configuration (Docker containers)
|
|
MINIO_ENDPOINT=localhost
|
|
MINIO_PORT=9000
|
|
MINIO_ACCESS_KEY=serpentrace
|
|
MINIO_SECRET_KEY=serpentrace123!
|
|
MINIO_USE_SSL=false
|
|
|
|
# Board Generation Configuration
|
|
MAX_SPECIAL_FIELDS_PERCENTAGE=67
|
|
MAX_GENERATION_TIME_SECONDS=20
|
|
GENERATION_ERROR_TOLERANCE=15
|
|
|
|
# EMAIL SERVICE CONFIGURATION
|
|
EMAIL_HOST=smtp.gmail.com
|
|
EMAIL_PORT=587
|
|
EMAIL_USER=your_email@domain.com
|
|
EMAIL_PASS=your_email_password
|
|
EMAIL_FROM=noreply@serpentrace.com |