Files
Horux360/ecosystem.config.js
Consultoria AS 8ddb60d6c1 fix(cfdi): increase popover z-index to prevent overlap
- Set z-index to 9999 to ensure popover appears above all elements
- Add explicit white background for better visibility

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

37 lines
707 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: 10000,
max_restarts: 3,
kill_timeout: 5000,
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: 10000,
max_restarts: 3,
kill_timeout: 5000,
env: {
NODE_ENV: 'development',
PORT: 3000
}
}
]
};