You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reviewed and deployed the PR version of blueprints/wupnext on a Dokploy instance.
Upstream check (javierlnmn/wupnext, cloned at 6eeb579): all five new vars exist in .env.example and wupnext/settings.py:
SITE_URL (settings.py:218, added 2026-07-27) — used for links in emails, password reset raises if unset.
MCP_BASE_URL (settings.py:285, added 2026-08-20 in "Create base MCP server with OAuth and DCR") — feeds OAUTH2_PROTECTED_RESOURCE_IDENTIFIER / authorization servers.
Q_WORKERS / Q_TIMEOUT / Q_RETRY (settings.py:224-226) — Django Q2 cluster config, defaults match the template (2 / 60 / 120).
Deploy (PR version):
generate-meta.js --check, validate-docker-compose.ts, validate-template.ts all pass.
Both containers running, RestartCount: 0; env injected as expected (SITE_URL/MCP_BASE_URL on web, SITE_URL/Q_* on worker).
Worker log: Q Cluster ... running, 2 worker processes ready. Web log: migrations applied, superuser created, gunicorn listening on :8000.
GET / → 302 → /accounts/login/ → 200 «WupNext» through Traefik.
One thing to fix before merging: the image the template pins (docker.io/javierlnmn/wupnext:latest) was last pushed on 2026-08-17 (same digest as 0.2.0), but the MCP server landed upstream on 2026-08-20. On the deployed instance GET /mcp, /.well-known/oauth-protected-resource and /.well-known/oauth-authorization-server all return 404, so the new description ("...and an MCP server so an AI client can work the board") and the mcp tag aren't true for the image users will actually pull today. MCP_BASE_URL is simply ignored by that build.
Could you push a new image that includes the MCP server (e.g. 0.3.0 + latest)? Ideally also pin the compose to that tag instead of :latest so the template is reproducible — I'm happy to re-test once it's up. Everything else in the PR is good.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is this PR about?
Adds new env vars for MCP server + Django Q config missing ones.
Checklist
Before submitting this PR, please make sure that:
Issues related (if applicable)
Close automatically the related issues using the keywords:
closes #ISSUE_NUMBERScreenshots or Videos