mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 14:52:08 +01:00
- Add Zod validation schemas with strong password requirements (12+ chars, complexity) - Implement rate limiting for authentication endpoints (registration, password reset) - Remove duplicate MetricCard component, consolidate to ui/metric-card.tsx - Update README.md to use pnpm commands consistently - Enhance authentication security with 12-round bcrypt hashing - Add comprehensive input validation for all API endpoints - Fix security vulnerabilities in user registration and password reset flows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
435 B
TypeScript
17 lines
435 B
TypeScript
import { processQueuedImports } from "./lib/importProcessor";
|
|
|
|
async function testImportProcessing() {
|
|
console.log("=== TESTING IMPORT PROCESSING ===\n");
|
|
|
|
try {
|
|
// Process with batch size of 50 to test multiple batches
|
|
await processQueuedImports(50);
|
|
|
|
console.log("\n=== IMPORT PROCESSING COMPLETED ===");
|
|
} catch (error) {
|
|
console.error("Error during import processing:", error);
|
|
}
|
|
}
|
|
|
|
testImportProcessing();
|