- 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>
35 lines
653 B
JavaScript
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
|
|
}
|
|
}
|
|
]
|
|
};
|