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:
Consultoria AS
2026-02-17 02:42:25 +00:00
parent cdb6f0c94e
commit 2bbab12627
6 changed files with 166 additions and 12 deletions

34
ecosystem.config.js Normal file
View 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
}
}
]
};