← back to ClawCoder

ecosystem.config.cjs

13 lines

module.exports = {
  apps: [{
    name: 'clawcoder',
    script: 'node_modules/.bin/next',
    args: 'start -p 7350',
    cwd: '/root/Projects/ClawCoder',
    env: {
      NODE_ENV: 'production',
      PORT: 7350,
    },
  }],
}