← back to Whatsmystyle

ecosystem.config.js

19 lines

module.exports = {
  apps: [{
    name: 'whatsmystyle',
    script: 'server.js',
    cwd: __dirname,
    env: {
      NODE_ENV: 'production',
      PORT: 9777,
      OLLAMA_URL: 'http://127.0.0.1:11434',
      OLLAMA_VISION_MODEL: 'llava:latest',
    },
    autorestart: true,
    max_memory_restart: '500M',
    out_file: './tmp/out.log',
    error_file: './tmp/err.log',
    merge_logs: true,
  }],
};