mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-02-17 18:53:27 +01:00
Compare commits
1 Commits
wealthfoli
...
fix/github
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
80bd949e5e |
12
.github/workflows/update-versions-github.yml
generated
vendored
12
.github/workflows/update-versions-github.yml
generated
vendored
@@ -89,9 +89,15 @@ jobs:
|
|||||||
slug=$(jq -r '.slug // empty' "$json_file" 2>/dev/null)
|
slug=$(jq -r '.slug // empty' "$json_file" 2>/dev/null)
|
||||||
[[ -z "$slug" ]] && continue
|
[[ -z "$slug" ]] && continue
|
||||||
|
|
||||||
# Find corresponding install script
|
# Find corresponding script (install script or addon script)
|
||||||
install_script="install/${slug}-install.sh"
|
install_script=""
|
||||||
[[ ! -f "$install_script" ]] && continue
|
if [[ -f "install/${slug}-install.sh" ]]; then
|
||||||
|
install_script="install/${slug}-install.sh"
|
||||||
|
elif [[ -f "tools/addon/${slug}.sh" ]]; then
|
||||||
|
install_script="tools/addon/${slug}.sh"
|
||||||
|
else
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
# Look for fetch_and_deploy_gh_release calls
|
# Look for fetch_and_deploy_gh_release calls
|
||||||
# Pattern: fetch_and_deploy_gh_release "app" "owner/repo" ["mode"] ["version"]
|
# Pattern: fetch_and_deploy_gh_release "app" "owner/repo" ["mode"] ["version"]
|
||||||
|
|||||||
@@ -407,12 +407,6 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
- paperless-exporter ([#11737](https://github.com/community-scripts/ProxmoxVE/pull/11737))
|
- paperless-exporter ([#11737](https://github.com/community-scripts/ProxmoxVE/pull/11737))
|
||||||
|
|
||||||
### 🌐 Website
|
|
||||||
|
|
||||||
- #### 📝 Script Information
|
|
||||||
|
|
||||||
- Snowshare: fix typo in config file path on website [@BirdMakingStuff](https://github.com/BirdMakingStuff) ([#11754](https://github.com/community-scripts/ProxmoxVE/pull/11754))
|
|
||||||
|
|
||||||
## 2026-02-09
|
## 2026-02-09
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
### 🚀 Updated Scripts
|
||||||
|
|||||||
@@ -43,15 +43,16 @@ function update_script() {
|
|||||||
|
|
||||||
msg_info "Building Frontend (patience)"
|
msg_info "Building Frontend (patience)"
|
||||||
cd /opt/wealthfolio
|
cd /opt/wealthfolio
|
||||||
export BUILD_TARGET=web
|
|
||||||
$STD pnpm install --frozen-lockfile
|
$STD pnpm install --frozen-lockfile
|
||||||
$STD pnpm --filter frontend... build
|
$STD pnpm tsc
|
||||||
|
$STD pnpm vite build
|
||||||
msg_ok "Built Frontend"
|
msg_ok "Built Frontend"
|
||||||
|
|
||||||
msg_info "Building Backend (patience)"
|
msg_info "Building Backend (patience)"
|
||||||
|
cd /opt/wealthfolio/src-server
|
||||||
source ~/.cargo/env
|
source ~/.cargo/env
|
||||||
$STD cargo build --release --manifest-path apps/server/Cargo.toml
|
$STD cargo build --release --manifest-path Cargo.toml
|
||||||
cp /opt/wealthfolio/target/release/wealthfolio-server /usr/local/bin/wealthfolio-server
|
cp /opt/wealthfolio/src-server/target/release/wealthfolio-server /usr/local/bin/wealthfolio-server
|
||||||
chmod +x /usr/local/bin/wealthfolio-server
|
chmod +x /usr/local/bin/wealthfolio-server
|
||||||
msg_ok "Built Backend"
|
msg_ok "Built Backend"
|
||||||
|
|
||||||
@@ -62,7 +63,7 @@ function update_script() {
|
|||||||
msg_ok "Restored Data"
|
msg_ok "Restored Data"
|
||||||
|
|
||||||
msg_info "Cleaning Up"
|
msg_info "Cleaning Up"
|
||||||
rm -rf /opt/wealthfolio/target
|
rm -rf /opt/wealthfolio/src-server/target
|
||||||
rm -rf /root/.cargo/registry
|
rm -rf /root/.cargo/registry
|
||||||
rm -rf /opt/wealthfolio/node_modules
|
rm -rf /opt/wealthfolio/node_modules
|
||||||
msg_ok "Cleaned Up"
|
msg_ok "Cleaned Up"
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
"privileged": false,
|
"privileged": false,
|
||||||
"interface_port": 3000,
|
"interface_port": 3000,
|
||||||
"documentation": "https://github.com/TuroYT/snowshare",
|
"documentation": "https://github.com/TuroYT/snowshare",
|
||||||
"config_path": "/opt/snowshare.env",
|
"config_path": "/opt/snowshare/.env",
|
||||||
"website": "https://github.com/TuroYT/snowshare",
|
"website": "https://github.com/TuroYT/snowshare",
|
||||||
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/snowshare.png",
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/snowshare.png",
|
||||||
"description": "A modern, secure file and link sharing platform built with Next.js, Prisma, and NextAuth. Share URLs, code snippets, and files with customizable expiration, privacy, and QR codes.",
|
"description": "A modern, secure file and link sharing platform built with Next.js, Prisma, and NextAuth. Share URLs, code snippets, and files with customizable expiration, privacy, and QR codes.",
|
||||||
|
|||||||
@@ -28,15 +28,15 @@ fetch_and_deploy_gh_release "wealthfolio" "afadil/wealthfolio" "tarball"
|
|||||||
|
|
||||||
msg_info "Building Frontend (patience)"
|
msg_info "Building Frontend (patience)"
|
||||||
cd /opt/wealthfolio
|
cd /opt/wealthfolio
|
||||||
export BUILD_TARGET=web
|
|
||||||
$STD pnpm install --frozen-lockfile
|
$STD pnpm install --frozen-lockfile
|
||||||
$STD pnpm --filter frontend... build
|
$STD pnpm tsc
|
||||||
|
$STD pnpm vite build
|
||||||
msg_ok "Built Frontend"
|
msg_ok "Built Frontend"
|
||||||
|
|
||||||
msg_info "Building Backend (patience)"
|
msg_info "Building Backend (patience)"
|
||||||
source ~/.cargo/env
|
cd /opt/wealthfolio/src-server
|
||||||
$STD cargo build --release --manifest-path apps/server/Cargo.toml
|
$STD cargo build --release --manifest-path Cargo.toml
|
||||||
cp /opt/wealthfolio/target/release/wealthfolio-server /usr/local/bin/wealthfolio-server
|
cp /opt/wealthfolio/src-server/target/release/wealthfolio-server /usr/local/bin/wealthfolio-server
|
||||||
chmod +x /usr/local/bin/wealthfolio-server
|
chmod +x /usr/local/bin/wealthfolio-server
|
||||||
msg_ok "Built Backend"
|
msg_ok "Built Backend"
|
||||||
|
|
||||||
@@ -58,7 +58,7 @@ echo "WF_PASSWORD=${WF_PASSWORD}" >~/wealthfolio.creds
|
|||||||
msg_ok "Configured Wealthfolio"
|
msg_ok "Configured Wealthfolio"
|
||||||
|
|
||||||
msg_info "Cleaning Up"
|
msg_info "Cleaning Up"
|
||||||
rm -rf /opt/wealthfolio/target
|
rm -rf /opt/wealthfolio/src-server/target
|
||||||
rm -rf /root/.cargo/registry
|
rm -rf /root/.cargo/registry
|
||||||
rm -rf /opt/wealthfolio/node_modules
|
rm -rf /opt/wealthfolio/node_modules
|
||||||
msg_ok "Cleaned Up"
|
msg_ok "Cleaned Up"
|
||||||
|
|||||||
Reference in New Issue
Block a user