Skip to content

Commit

Permalink
change backend url
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLolz committed Feb 23, 2024
1 parent 2cc2e10 commit 36d9f9a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion frontend/src/services/guess.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const baseURL = "https://matchguessr.azurewebsites.net/api/guess"
const baseURL = "https://matchguessr.yellowhill-bd09ee4c.canadaeast.azurecontainerapps.io/api/guess"
// const baseURL = "https://matchguessr.azurewebsites.net/api/guess"
// const baseURL = "http://localhost:8080/api/guess"

export enum Result {
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/services/league.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const baseURL = "https://matchguessr.azurewebsites.net/api"
const baseURL = "https://matchguessr.yellowhill-bd09ee4c.canadaeast.azurecontainerapps.io/api"
// const baseURL = "https://matchguessr.azurewebsites.net/api"
// const baseURL = "http://localhost:8080/api"

interface Standing {
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/services/user.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const baseURL = "https://matchguessr.azurewebsites.net/api/auth"
const baseURL = "https://matchguessr.yellowhill-bd09ee4c.canadaeast.azurecontainerapps.io/api/auth"
// const baseURL = "https://matchguessr.azurewebsites.net/api/auth"
// const baseURL = "http://localhost:8080/api/auth"

const register = async (username: string, password: string) => {
Expand Down

0 comments on commit 36d9f9a

Please sign in to comment.