fix(#85): Run expanded local discovery and continue with next actionable task
Some checks are pending
Docker Test / test (push) Waiting to run
Some checks are pending
Docker Test / test (push) Waiting to run
This commit is contained in:
parent
423ac779da
commit
9a26ba908a
11 changed files with 347 additions and 9 deletions
13
backend/debug-server.js
Normal file
13
backend/debug-server.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
console.log('Starting debug server...');
|
||||
|
||||
try {
|
||||
import('./src/server.js').then(() => {
|
||||
console.log('Server module imported successfully');
|
||||
}).catch(err => {
|
||||
console.error('Error importing server:', err);
|
||||
});
|
||||
} catch (err) {
|
||||
console.error('Error in main execution:', err);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue