first
This commit is contained in:
19
test-http-startup.js
Normal file
19
test-http-startup.js
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
/**
|
||||
* Test HTTP server startup banner
|
||||
*/
|
||||
|
||||
// Set environment variables
|
||||
process.env.LARAVEL_API_BASE_URL = 'https://example.com';
|
||||
process.env.MCP_SERVER_PORT = '3001';
|
||||
|
||||
console.log('Starting HTTP server test...');
|
||||
|
||||
import('./http-server.js')
|
||||
.then(() => {
|
||||
console.log('HTTP server module loaded successfully');
|
||||
})
|
||||
.catch(error => {
|
||||
console.error('Failed to load HTTP server:', error);
|
||||
});
|
Reference in New Issue
Block a user