File size: 411 Bytes
666aab6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
  apps: [
    {
      name: 'devin-frontend',
      script: 'npm',
      args: 'start',
      cwd: '/home/user/devin-agent/frontend',
      watch: false,
      instances: 1,
      exec_mode: 'fork',
      env: {
        PORT: 3000,
        NODE_ENV: 'production',
        NEXT_PUBLIC_API_URL: 'http://localhost:7860',
        NEXT_PUBLIC_WS_URL: 'ws://localhost:7860',
      },
    },
  ],
}