File size: 1,095 Bytes
373c769 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
#!/usr/bin/env node
const { spawn } = require('child_process');
const path = require('path');
console.log('🚀 Starting Luna OCR Development Environment...\n');
// Start backend server
console.log('📡 Starting backend server...');
const backend = spawn('npm', ['start'], {
cwd: path.join(__dirname, 'server'),
stdio: 'inherit',
shell: true
});
// Wait a bit for backend to start
setTimeout(() => {
console.log('\n🎨 Starting frontend...');
const frontend = spawn('npm', ['start'], {
stdio: 'inherit',
shell: true
});
// Handle process termination
process.on('SIGINT', () => {
console.log('\n🛑 Shutting down...');
backend.kill();
frontend.kill();
process.exit();
});
frontend.on('close', (code) => {
console.log(`Frontend exited with code ${code}`);
backend.kill();
});
backend.on('close', (code) => {
console.log(`Backend exited with code ${code}`);
frontend.kill();
});
}, 2000);
backend.on('close', (code) => {
console.log(`Backend exited with code ${code}`);
}); |