From 55bf2c6c05f56ee077dd75b7c7f046b2b14fe992 Mon Sep 17 00:00:00 2001 From: Dev Singh Date: Sun, 21 Jul 2024 12:48:54 -0400 Subject: [PATCH] update endpoints --- .github/workflows/deploy-dev.yml | 2 +- clientv2/README.md | 2 +- tests/live_integration/conftest.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index 2de927a..a437674 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -45,7 +45,7 @@ jobs: run: cd clientv2 && corepack enable && yarn && yarn run build env: VITE_AAD_CLIENT_ID: 251efa82-f589-42e1-9ebb-e214a4f40a0f - VITE_API_URL: https://resume-api.qa.acmuiuc.org/api/v1 + VITE_API_URL: https://resumes.aws.qa.acmuiuc.org/api/v1 VITE_KINDE_CLIENT_ID: 9dfcd7977da347f3ab55fbb909a4d5cf VITE_RUN_ENVIRONMENT: dev - name: Publish diff --git a/clientv2/README.md b/clientv2/README.md index ac4f352..4de1a75 100644 --- a/clientv2/README.md +++ b/clientv2/README.md @@ -3,7 +3,7 @@ ## Running Locally Create `.env.local` in this directory with the following content: ``` -VITE_API_URL="https://resume-api.qa.acmuiuc.org/api/v1" +VITE_API_URL="https://resumes.aws.qa.acmuiuc.org/api/v1" VITE_AAD_CLIENT_ID="251efa82-f589-42e1-9ebb-e214a4f40a0f" VITE_KINDE_CLIENT_ID="9dfcd7977da347f3ab55fbb909a4d5cf" VITE_RUN_ENVIRONMENT="dev" diff --git a/tests/live_integration/conftest.py b/tests/live_integration/conftest.py index 302b6b1..0ac8094 100644 --- a/tests/live_integration/conftest.py +++ b/tests/live_integration/conftest.py @@ -13,6 +13,6 @@ def request(self, method, url, *args, **kwargs): @pytest.fixture def api_client(): - ENDPOINT = "https://resume-api.qa.acmuiuc.org/" + ENDPOINT = "https://resumes.aws.qa.acmuiuc.org/" client = LiveServerSession(base_url=ENDPOINT) yield client \ No newline at end of file