- 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>
37 lines
707 B
JavaScript
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
|
|
}
|
|
}
|
|
]
|
|
};
|