From f48b507847740767b1749c5e0b7892f32540a7ca Mon Sep 17 00:00:00 2001 From: Arwa Sharif Date: Tue, 28 Apr 2026 22:07:06 -0400 Subject: [PATCH] deploy: update CORS origins and final README live links --- README.md | 4 ++++ server/main.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 22bc43c..ce560e9 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ ApplyAI is a cloud-native, AI-powered assistant that helps streamline the job search. The MVP focuses on shortening application time, increasing application volume, and improving the quality of each submission by providing AI-driven resume tailoring and conversational career guidance. +## 🔗 Live Links +* **Production Web App:** [https://apply-ai-chi.vercel.app](https://apply-ai-chi.vercel.app) +* **API Documentation:** [https://applyai-backend-service-296648600803.us-central1.run.app/docs](https://applyai-backend-service-296648600803.us-central1.run.app/docs) + ## Project Gallery

diff --git a/server/main.py b/server/main.py index f616a15..f866272 100644 --- a/server/main.py +++ b/server/main.py @@ -72,7 +72,7 @@ async def lifespan(app: FastAPI): # Define the "origins" (websites) that are allowed to talk to the API origins = [ "http://localhost:3000", # local frontend - # "https://prod-frontend-url.com" # We'll add this later + "https://apply-ai-chi.vercel.app", ] app.add_middleware(