Compare commits

...

11 Commits

Author SHA1 Message Date
github-actions[bot]
547d25b949 Update CHANGELOG.md 2026-05-28 09:13:11 +00:00
github-actions[bot]
8c9477506c chore(ct): sync adventurelog defaults with PocketBase (#14772) 2026-05-28 11:12:52 +02:00
MickLesk
f7224f3db8 minor fix 2026-05-28 10:07:01 +02:00
community-scripts-pr-app[bot]
03dd5e7e88 Update CHANGELOG.md (#14770)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-05-28 06:33:41 +00:00
community-scripts-pr-app[bot]
7b5e2f9656 Update CHANGELOG.md (#14769)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-05-28 06:33:29 +00:00
CanbiZ (MickLesk)
7703edf4b6 RomM: remove nginx default.conf during installation (#14766) 2026-05-28 08:33:16 +02:00
CanbiZ (MickLesk)
32f1956023 Yamtrack: migrate to uv (#14767) 2026-05-28 08:33:02 +02:00
community-scripts-pr-app[bot]
49817d14f8 Update CHANGELOG.md (#14768)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-05-28 06:31:38 +00:00
CanbiZ (MickLesk)
d64b9f6878 Open-Archiver: replace pnpm approve-builds --yes with --all (#14765) 2026-05-28 08:31:12 +02:00
community-scripts-pr-app[bot]
1fde72e141 Update CHANGELOG.md (#14764)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-05-28 05:05:26 +00:00
Stephen Chin
ceb50e3528 fix(hermesagent): set npm_config_yes=true to suppress interactive prompts during install (#14763) 2026-05-28 07:04:54 +02:00
7 changed files with 24 additions and 6 deletions

View File

@@ -467,6 +467,24 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
</details>
## 2026-05-28
### 🚀 Updated Scripts
- #### 🐞 Bug Fixes
- RomM: remove nginx default.conf during installation [@MickLesk](https://github.com/MickLesk) ([#14766](https://github.com/community-scripts/ProxmoxVE/pull/14766))
- Open-Archiver: replace pnpm approve-builds --yes with --all [@MickLesk](https://github.com/MickLesk) ([#14765](https://github.com/community-scripts/ProxmoxVE/pull/14765))
- fix(hermesagent): set npm_config_yes=true to suppress interactive pro… [@steveonjava](https://github.com/steveonjava) ([#14763](https://github.com/community-scripts/ProxmoxVE/pull/14763))
- #### 🔧 Refactor
- Yamtrack: migrate to uv [@MickLesk](https://github.com/MickLesk) ([#14767](https://github.com/community-scripts/ProxmoxVE/pull/14767))
### ❔ Uncategorized
- chore(ct): sync adventurelog defaults with PocketBase [@github-actions[bot]](https://github.com/github-actions[bot]) ([#14772](https://github.com/community-scripts/ProxmoxVE/pull/14772))
## 2026-05-27
### 🆕 New Scripts

View File

@@ -9,7 +9,7 @@ APP="AdventureLog"
var_tags="${var_tags:-traveling}"
var_disk="${var_disk:-7}"
var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-2048}"
var_ram="${var_ram:-4096}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_arm64="${var_arm64:-no}"

View File

@@ -44,8 +44,7 @@ function update_script() {
msg_info "Installing Python Dependencies"
cd /opt/yamtrack
$STD uv venv --clear .venv
$STD uv pip install --no-cache-dir -r requirements.txt
$STD uv sync --locked
msg_ok "Installed Python Dependencies"
msg_info "Restoring Data"

View File

@@ -47,6 +47,7 @@ fi
msg_info "Installing Hermes Agent"
$STD setsid --wait bash -c '
set -a; source /etc/default/hermes; set +a
export npm_config_yes=true
bash <(curl -fsSL https://hermes-agent.nousresearch.com/install.sh) --skip-setup --hermes-home /home/hermes/.hermes --dir /home/hermes/.hermes/hermes-agent
'
chown -R hermes:hermes /home/hermes

View File

@@ -46,7 +46,7 @@ sed -i "s|^ENCRYPTION_KEY=.*|ENCRYPTION_KEY=$SECRET_KEY|g" /opt/openarchiver/.en
sed -i "s|^TIKA_URL=.*|TIKA_URL=|g" /opt/openarchiver/.env
sed -i "s|^ORIGIN=.*|ORIGIN=http://$LOCAL_IP:3000|g" /opt/openarchiver/.env
$STD pnpm install --shamefully-hoist --frozen-lockfile --prod=false
$STD pnpm approve-builds --yes
$STD pnpm approve-builds
$STD pnpm run build:oss
$STD pnpm db:migrate
msg_ok "Setup Open Archiver"

View File

@@ -265,6 +265,7 @@ EOF
sed -i "s|alias /var/lib/romm/library/;|alias ${ROMM_BASE}/library/;|" /etc/nginx/sites-available/romm
rm -f /etc/nginx/sites-enabled/default
rm -f /etc/nginx/conf.d/default.conf
ln -sf /etc/nginx/sites-available/romm /etc/nginx/sites-enabled/romm
systemctl restart nginx
systemctl enable -q --now nginx

View File

@@ -27,8 +27,7 @@ fetch_and_deploy_gh_release "yamtrack" "FuzzyGrim/Yamtrack" "tarball"
msg_info "Installing Python Dependencies"
cd /opt/yamtrack
$STD uv venv .venv
$STD uv pip install --no-cache-dir -r requirements.txt
$STD uv sync --locked
msg_ok "Installed Python Dependencies"
msg_info "Configuring Yamtrack"