[PR #5168] [CLOSED] Codex/upstream sync 20260308 #5334

Closed
opened 2026-06-05 15:21:00 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/5168
Author: @AndreasRamsli
Created: 3/8/2026
Status: Closed

Base: masterHead: codex/upstream-sync-20260308


📝 Commits (10+)

  • 36e8115 Add Lovora custom Docker image with cloudflared + CI/CD pipeline
  • 7e7e98b Fix workflow branch: trigger on master not main
  • fa5bd14 Trigger Lovora build
  • de0d5ab Remove paths filter to trigger build on all master pushes
  • 3969f4e Trigger fresh Lovora build
  • 0ff94b9 Fix cloudflared token env var name for RunPod secrets
  • 49cfe79 Fix supervisord permissions: run as root, drop anythingllm for app process
  • 1f5d929 Override ENTRYPOINT for supervisord, use original entrypoint for AnythingLLM process
  • 74c6d04 Fix cloudflared token env var: use CLOUDFLARE_TOKEN not RUNPOD_SECRET prefix
  • f9eafa6 Fix crash loop: run node directly instead of entrypoint script, add collector process

📊 Changes

13 files changed (+233 additions, -49 deletions)

View changed files

.github/workflows/deploy.yml (+30 -0)
📝 frontend/index.html (+9 -13)
📝 frontend/src/components/Modals/Password/MultiUserAuth.jsx (+4 -1)
📝 frontend/src/components/Modals/Password/SingleUserAuth.jsx (+4 -1)
📝 frontend/src/components/WorkspaceChat/ChatContainer/index.jsx (+3 -0)
📝 frontend/src/locales/en/common.js (+26 -28)
📝 frontend/src/pages/Main/Home/index.jsx (+3 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/Home/index.jsx (+1 -1)
ramsli-custom/Caddyfile (+5 -0)
ramsli-custom/Dockerfile (+36 -0)
ramsli-custom/entrypoint.sh (+46 -0)
ramsli-custom/supervisord.conf (+30 -0)
📝 server/endpoints/workspaces.js (+36 -5)

📄 Description

Pull Request Type

  • feat (New feature)
  • 🐛 fix (Bug fix)
  • ♻️ refactor (Code refactoring without changing behavior)
  • 💄 style (UI style changes)
  • 🔨 chore (Build, CI, maintenance)
  • 📝 docs (Documentation updates)

Relevant Issues

resolves #

Description

Visuals (if applicable)

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated (if applicable)
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/5168 **Author:** [@AndreasRamsli](https://github.com/AndreasRamsli) **Created:** 3/8/2026 **Status:** ❌ Closed **Base:** `master` ← **Head:** `codex/upstream-sync-20260308` --- ### 📝 Commits (10+) - [`36e8115`](https://github.com/Mintplex-Labs/anything-llm/commit/36e811592e7cf1b295bb3482c33f37a93d0ea35d) Add Lovora custom Docker image with cloudflared + CI/CD pipeline - [`7e7e98b`](https://github.com/Mintplex-Labs/anything-llm/commit/7e7e98b224e82afc3b47dc585ffda91267af5452) Fix workflow branch: trigger on master not main - [`fa5bd14`](https://github.com/Mintplex-Labs/anything-llm/commit/fa5bd143fabaf4ad62062c8695f12865152b6bb2) Trigger Lovora build - [`de0d5ab`](https://github.com/Mintplex-Labs/anything-llm/commit/de0d5abb375d87b346777bfd85f056a772325a29) Remove paths filter to trigger build on all master pushes - [`3969f4e`](https://github.com/Mintplex-Labs/anything-llm/commit/3969f4ea4f7896b07e04742b49b1f13640c747a1) Trigger fresh Lovora build - [`0ff94b9`](https://github.com/Mintplex-Labs/anything-llm/commit/0ff94b980c82ff0091bdfc5b8e062c967e6512e8) Fix cloudflared token env var name for RunPod secrets - [`49cfe79`](https://github.com/Mintplex-Labs/anything-llm/commit/49cfe7974b28692cf5af93e0d47bfc64aba58ec6) Fix supervisord permissions: run as root, drop anythingllm for app process - [`1f5d929`](https://github.com/Mintplex-Labs/anything-llm/commit/1f5d92999e1a89fff23e6bfb226ca1922ab53db9) Override ENTRYPOINT for supervisord, use original entrypoint for AnythingLLM process - [`74c6d04`](https://github.com/Mintplex-Labs/anything-llm/commit/74c6d04e3b2bbf863ac02b4748dac6087f8a8485) Fix cloudflared token env var: use CLOUDFLARE_TOKEN not RUNPOD_SECRET prefix - [`f9eafa6`](https://github.com/Mintplex-Labs/anything-llm/commit/f9eafa6de662732ccef11d36eed555417a154c5a) Fix crash loop: run node directly instead of entrypoint script, add collector process ### 📊 Changes **13 files changed** (+233 additions, -49 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/deploy.yml` (+30 -0) 📝 `frontend/index.html` (+9 -13) 📝 `frontend/src/components/Modals/Password/MultiUserAuth.jsx` (+4 -1) 📝 `frontend/src/components/Modals/Password/SingleUserAuth.jsx` (+4 -1) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/index.jsx` (+3 -0) 📝 `frontend/src/locales/en/common.js` (+26 -28) 📝 `frontend/src/pages/Main/Home/index.jsx` (+3 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/Home/index.jsx` (+1 -1) ➕ `ramsli-custom/Caddyfile` (+5 -0) ➕ `ramsli-custom/Dockerfile` (+36 -0) ➕ `ramsli-custom/entrypoint.sh` (+46 -0) ➕ `ramsli-custom/supervisord.conf` (+30 -0) 📝 `server/endpoints/workspaces.js` (+36 -5) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat (New feature) - [ ] 🐛 fix (Bug fix) - [ ] ♻️ refactor (Code refactoring without changing behavior) - [ ] 💄 style (UI style changes) - [ ] 🔨 chore (Build, CI, maintenance) - [ ] 📝 docs (Documentation updates) ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves # ### Description <!-- Describe the changes in this PR that are impactful to the repo. What problem does it solve? --> ### Visuals (if applicable) <!-- Add screenshots or screen recordings to demonstrate the changes, especially for UI updates. --> ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated (if applicable) - [ ] I have tested my code functionality - [ ] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 15:21:00 -04:00
yindo closed this issue 2026-06-05 15:21:00 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#5334