mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-02-07 08:19:17 +00:00
Compare commits
5 Commits
f1d7639cae
...
5eb84147bd
Author | SHA1 | Date | |
---|---|---|---|
|
5eb84147bd | ||
|
bcc6342f83 | ||
|
ca902c50fb | ||
|
20e9aa3302 | ||
|
15b6b5f763 |
@ -27,6 +27,7 @@ Do not break established syntax in this file, as it is automatically updated by
|
|||||||
|
|
||||||
### 🌐 Website
|
### 🌐 Website
|
||||||
|
|
||||||
|
- Change MISC from red to green [@MickLesk](https://github.com/MickLesk) ([#815](https://github.com/community-scripts/ProxmoxVE/pull/815))
|
||||||
- Update some JSON Files for Website [@MickLesk](https://github.com/MickLesk) ([#812](https://github.com/community-scripts/ProxmoxVE/pull/812))
|
- Update some JSON Files for Website [@MickLesk](https://github.com/MickLesk) ([#812](https://github.com/community-scripts/ProxmoxVE/pull/812))
|
||||||
- Update Notes & Documentation for Proxmox Backup Server [@MickLesk](https://github.com/MickLesk) ([#804](https://github.com/community-scripts/ProxmoxVE/pull/804))
|
- Update Notes & Documentation for Proxmox Backup Server [@MickLesk](https://github.com/MickLesk) ([#804](https://github.com/community-scripts/ProxmoxVE/pull/804))
|
||||||
|
|
||||||
|
@ -140,9 +140,9 @@ function update_script() {
|
|||||||
|
|
||||||
msg_info "Building Frontend"
|
msg_info "Building Frontend"
|
||||||
cd ./frontend
|
cd ./frontend
|
||||||
pnpm install &>/dev/null
|
yarn cache clean --silent --force &>/dev/null
|
||||||
pnpm upgrade &>/dev/null
|
yarn install --silent --network-timeout=30000 &>/dev/null
|
||||||
pnpm run build &>/dev/null
|
yarn build &>/dev/null
|
||||||
cp -r dist/* /app/frontend
|
cp -r dist/* /app/frontend
|
||||||
cp -r app-images/* /app/frontend/images
|
cp -r app-images/* /app/frontend/images
|
||||||
msg_ok "Built Frontend"
|
msg_ok "Built Frontend"
|
||||||
|
@ -26,7 +26,7 @@ export const formattedBadge = (type: string) => {
|
|||||||
<Badge className="text-yellow-500/75 border-yellow-500/75">LXC</Badge>
|
<Badge className="text-yellow-500/75 border-yellow-500/75">LXC</Badge>
|
||||||
);
|
);
|
||||||
case "misc":
|
case "misc":
|
||||||
return <Badge className="text-red-500/75 border-red-500/75">MISC</Badge>;
|
return <Badge className="text-green-500/75 border-green-500/75">MISC</Badge>;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
|
@ -141,9 +141,9 @@ msg_ok "Set up Enviroment"
|
|||||||
|
|
||||||
msg_info "Building Frontend"
|
msg_info "Building Frontend"
|
||||||
cd ./frontend
|
cd ./frontend
|
||||||
$STD pnpm install
|
$STD yarn cache clean --silent --force
|
||||||
$STD pnpm upgrade
|
$STD yarn install --silent --network-timeout=30000
|
||||||
$STD pnpm run build
|
$STD yarn build
|
||||||
cp -r dist/* /app/frontend
|
cp -r dist/* /app/frontend
|
||||||
cp -r app-images/* /app/frontend/images
|
cp -r app-images/* /app/frontend/images
|
||||||
msg_ok "Built Frontend"
|
msg_ok "Built Frontend"
|
||||||
|
Loading…
Reference in New Issue
Block a user