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>
This commit is contained in:
34
ecosystem.config.js
Normal file
34
ecosystem.config.js
Normal file
@@ -0,0 +1,34 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user