Self-host fix: pass NEXT_PUBLIC_API_URL to dashboard (compose) + docs troubleshooting#1238
Draft
devin-ai-integration[bot] wants to merge 2 commits intomainfrom
Draft
Self-host fix: pass NEXT_PUBLIC_API_URL to dashboard (compose) + docs troubleshooting#1238devin-ai-integration[bot] wants to merge 2 commits intomainfrom
devin-ai-integration[bot] wants to merge 2 commits intomainfrom
Conversation
…self-host Co-Authored-By: Alex <meta.alex.r@gmail.com>
…hboard posting to :3000 Co-Authored-By: Alex <meta.alex.r@gmail.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
📥 Pull Request
📘 Description
Fixes self-hosted AgentOps setup where the dashboard incorrectly posts to
http://localhost:3000/auth/login(returning 404) instead of the API service on port 8000.Root Cause: The dashboard's API client reads
NEXT_PUBLIC_API_URLto determine the backend URL, but this environment variable wasn't being passed to the dashboard container in Docker Compose, causing requests to default to the dashboard's own host.Changes:
NEXT_PUBLIC_API_URL: ${NEXT_PUBLIC_API_URL}to dashboard service environment incompose.yaml🧪 Testing
⚠️ Manual testing required - This fix was developed based on HAR file analysis and code inspection but hasn't been tested end-to-end with a running compose stack.
Recommended verification:
app/.envincludesNEXT_PUBLIC_API_URL=http://localhost:8000docker compose up -dfromapp/directoryhttp://localhost:3000makes requests tohttp://localhost:8000(not:3000).env.exampleincludesNEXT_PUBLIC_API_URL(should be present)Link to Devin run: https://app.devin.ai/sessions/bb2e39c488334c21854b3aa218db0579
Requested by: @areibman