5 lines
210 B
Bash
5 lines
210 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Quick Frontend Fix - Run on Proxmox Host
|
||
|
|
VMID=10130
|
||
|
|
pct exec $VMID -- bash -c "cd /opt/dbis-core/frontend && npm install && npm run build && systemctl restart nginx && echo '✅ Frontend fixed!'"
|