← back to Handbag Auth Nextjs

ecosystem.config.js

32 lines

module.exports = {
  apps: [
    {
      name: 'luxvault-web',
      script: 'npm',
      args: 'start',
      env: {
        PORT: 7991,
        NODE_ENV: 'production'
      }
    },
    {
      name: 'luxvault-ingestion',
      script: './claude-automation/ingestion.ts',
      interpreter: 'ts-node',
      watch: false,
      env: {
        NODE_ENV: 'production'
      }
    },
    {
      name: 'luxvault-deal-detector',
      script: './claude-automation/deal-detector.ts',
      interpreter: 'ts-node',
      watch: false,
      env: {
        NODE_ENV: 'production'
      }
    }
  ]
}