fix: rename ecosystem config to .cjs for PM2 compatibility
- Rename ecosystem.config.js to ecosystem.config.cjs to resolve ES module issues - PM2 now successfully starts and manages the remote server process - Server confirmed running on port 3040 with all endpoints operational
This commit is contained in:
@@ -2,8 +2,7 @@ module.exports = {
|
||||
apps: [
|
||||
{
|
||||
name: 'mcp-remote-server',
|
||||
script: 'npm',
|
||||
args: 'run start:server',
|
||||
script: 'dist/index.js',
|
||||
cwd: __dirname,
|
||||
instances: 1,
|
||||
autorestart: true,
|
Reference in New Issue
Block a user