diff --git a/apps/data-service/src/proxy-demo.ts b/apps/data-service/src/proxy-demo.ts deleted file mode 100644 index eeb7db9..0000000 --- a/apps/data-service/src/proxy-demo.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { proxyService } from './providers/proxy.tasks'; -import { getLogger } from '@stock-bot/logger'; - -// Initialize logger for the demo -const logger = getLogger('proxy-demo'); -console.log('🔧 Starting proxy demo...'); -/** - * Example: Custom proxy source with enhanced logging - */ -async function demonstrateCustomProxySource() { - console.log('🔧 Demonstrating!'); - logger.info('🔧 Demonstrating custom proxy source...'); - - try { - console.log('🔧 Demonstrating 1'); - await proxyService.fetchProxiesFromSources(); - console.log('🔧 Demonstrating custom proxy source is DONE!'); - } catch (error) { - logger.error('❌ Custom source scraping failed',{ - error: error - }); - } -} -demonstrateCustomProxySource()