Files
mini/scripts/start-worker.js

17 lines
422 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env node
/**
* Start the Content Generation Worker
* This should run as a separate process alongside the main Astro server
*/
import '../src/workers/contentGenerator.js';
console.log('🚀 Content Generation Worker is running...');
console.log('Press CTRL+C to stop');
// Keep process alive
process.on('SIGINT', async () => {
console.log('\n⏹ Shutting down worker...');
process.exit(0);
});