Files
Horux360/ecosystem.config.js
Consultoria AS 2bbab12627 fix: resolve build errors and add dialog component
- Add Dialog UI component (shadcn/radix-ui)
- Fix html2pdf.js type annotations with const assertions
- Add @radix-ui/react-dialog dependency

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-17 02:42:25 +00:00

35 lines
653 B
JavaScript

module.exports = {
apps: [
{
name: 'horux-api',
cwd: '/root/Horux/apps/api',
script: 'pnpm',
args: 'dev',
interpreter: 'none',
watch: false,
autorestart: true,
restart_delay: 5000,
max_restarts: 5,
env: {
NODE_ENV: 'development',
PORT: 4000
}
},
{
name: 'horux-web',
cwd: '/root/Horux/apps/web',
script: 'pnpm',
args: 'dev',
interpreter: 'none',
watch: false,
autorestart: true,
restart_delay: 5000,
max_restarts: 5,
env: {
NODE_ENV: 'development',
PORT: 3000
}
}
]
};