fix(cors): update production origins and fix .env loading (B-1) - #45
Open
Hamza-Ali0719 wants to merge 7 commits into
Open
fix(cors): update production origins and fix .env loading (B-1)#45Hamza-Ali0719 wants to merge 7 commits into
Hamza-Ali0719 wants to merge 7 commits into
Conversation
feat(test): add context scope tests for Objective 2
fix(chatbot): replace fake DEMO_BOT_REPLY with genuine error handling (B-2)
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.
Objective: B-1 - Backend CORS Misconfiguration (Root Cause)
Problem:
The production frontend lives at https://calculus.quantumlogicslimited.com
The ALLOWED_ORIGINS list still contained the placeholder https://your-calculus-website.com
This blocked all API requests from production due to CORS policy
.env loading was relative to the working directory, breaking inside Docker/CI
Fix Applied:
✅ Added production domain to ALLOWED_ORIGINS in backend/app/main.py
✅ Added production domain to ALLOWED_AI_ORIGINS in aiService/chatbot.py
✅ Added support for ALLOWED_ORIGINS_EXTRA env var (comma-separated) for future domains
✅ Fixed .env loading in aiService/services/llm_client.py to use Path(file).parent / ".env"
Testing Performed:
✅ Backend starts without errors
✅ CORS preflight passes for production domain
✅ API keys load correctly in Docker/CI
Closes: B-1