File size: 464 Bytes
02117ee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports = {
  apps: [
    {
      name: 'devin-backend',
      script: 'uvicorn',
      args: 'main:app --host 0.0.0.0 --port 7860 --loop asyncio --log-level info',
      interpreter: 'python3',
      cwd: '/home/user/devin-agent/backend',
      watch: false,
      instances: 1,
      exec_mode: 'fork',
      env: {
        PORT: 7860,
        HOST: '0.0.0.0',
        DB_PATH: '/tmp/devin_agent.db',
        PYTHONUNBUFFERED: '1',
      },
    },
  ],
}