Files
cannaiq/backend/archive/test-category-discovery.ts
Kelly d91c55a344 feat: Add stale process monitor, users route, landing page, archive old scripts
- Add backend stale process monitoring API (/api/stale-processes)
- Add users management route
- Add frontend landing page and stale process monitor UI on /scraper-tools
- Move old development scripts to backend/archive/
- Update frontend build with new features

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-05 04:07:31 -07:00

16 lines
398 B
TypeScript

import { discoverCategories } from './src/services/category-discovery';
async function test() {
try {
console.log('Testing category discovery for store 18 (Curaleaf - 48th Street)...');
await discoverCategories(18);
console.log('✅ Category discovery completed!');
process.exit(0);
} catch (error) {
console.error('❌ Error:', error);
process.exit(1);
}
}
test();