feat: make frontend backend API URL configurable via environment variable#55
Open
Rahul-2k4 wants to merge 1 commit into
Open
feat: make frontend backend API URL configurable via environment variable#55Rahul-2k4 wants to merge 1 commit into
Rahul-2k4 wants to merge 1 commit into
Conversation
…BASE_URL Signed-off-by: Rahul Tripathi <rahul@Rahuls-Mac-mini.local>
ad87c0d to
43fc381
Compare
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.
Summary
The frontend
api.tshardcodes the backend API URL ashttp://127.0.0.1:5000/, which prevents deployment to hosted environments where the backend runs at a different origin (e.g., PythonAnywhere).This PR makes the URL configurable via the
NEXT_PUBLIC_API_BASE_URLenvironment variable, falling back to the local default when unset.Related to #8 – deployment readiness.
Changes
frontend/services/api.ts: ReadNEXT_PUBLIC_API_BASE_URLfromprocess.envwith fallback tohttp://127.0.0.1:5000/frontend/.env.example: Document the new variablefrontend/.gitignore: Explicitly list env files (instead of broad.env*glob) so.env.examplecan be committedUsage
Local development (default -- no action needed):
Point at a deployed backend: