Skip to content

Commit

Permalink
update endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
devksingh4 committed Jul 21, 2024
1 parent c5b21f7 commit 55bf2c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion clientv2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/live_integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 55bf2c6

Please sign in to comment.