# TekDek Command Center Configuration # ============================================================================ # Database Configuration # ============================================================================ # PostgreSQL connection string DATABASE_URL=postgresql://user:password@localhost:5432/tekdek_command_center # Connection pool settings DATABASE_POOL_MIN=5 DATABASE_POOL_MAX=20 # ============================================================================ # Server Configuration # ============================================================================ # Server port PORT=3000 # Node environment NODE_ENV=development # ============================================================================ # Logging # ============================================================================ # Log level: debug, info, warn, error LOG_LEVEL=info # ============================================================================ # CORS Configuration # ============================================================================ # Allowed origin for CORS (use * for development) CORS_ORIGIN=* # ============================================================================ # Authentication (Phase 2) # ============================================================================ # JWT secret for authentication JWT_SECRET=your_secret_key_here # Token expiration JWT_EXPIRY=24h