Skip to content

Commit

Permalink
fix: change api url
Browse files Browse the repository at this point in the history
  • Loading branch information
Luv7804 committed Aug 7, 2024
1 parent 734c018 commit fbb947d
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

## Introduction

**🟥 Iced-Latte (Backend)** is a non-profit sandbox project where a team of IT enthusiasts are working on creating a modern marketplace (https://iced-latte.uk/) for selling coffee in order to pump up their soft and hard skills and have fun working on an interesting project.
**🟥 Iced-Latte (Backend)** is a non-profit sandbox project where a team of IT enthusiasts are working on creating a modern marketplace (http://il.pride.improwised.local/) for selling coffee in order to pump up their soft and hard skills and have fun working on an interesting project.

🟥 It's crucial to note that we operate without financial support from any party, and we don't compensate anyone financially either. Our efforts are fuelled solely by passion and dedication.

Expand Down Expand Up @@ -107,7 +107,7 @@ The main point of interaction is the [Issues page](https://github.com/Sunagatov/
The bussiness docs are here [Docs](https://drive.google.com/drive/folders/1vvfXy6n4cz01JjNyTgoYG0g6EIRvyHDw?usp=share_link).

Swagger REST APIs contracts described [here](https://iced-latte.uk/backend/api/docs/swagger-ui/index.html).
Swagger REST APIs contracts described [here](http://il.pride.improwised.local/backend/api/docs/swagger-ui/index.html).

### 😎 I want to write some code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public String create() {
"include_granted_scopes=true&" +
"response_type=code&" +
"state=state_parameter_passthrough_value&" +
"redirect_uri=https://iced-latte.uk/backend/api/v1/auth/google/callback&" +
"redirect_uri=http://il.pride.improwised.local/backend/api/v1/auth/google/callback&" +
"client_id=" + clientId;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public GoogleIdToken createGoogleIdToken(final String authorizationCode) throws

private TokenResponse getTokenResponse(String authorizationCode) throws IOException, GeneralSecurityException {
return createGoogleAuthorizationCodeFlow().newTokenRequest(authorizationCode)
.setRedirectUri("https://iced-latte.uk/backend/api/v1/auth/google/callback")
.setRedirectUri("http://il.pride.improwised.local/backend/api/v1/auth/google/callback")
.execute();
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/api-specs/cart-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
servers:
- url: "http://localhost:8083"
description: "Local development server"
- url: "https://iced-latte.uk/backend"
- url: "http://il.pride.improwised.local/backend"
description: "Production server"

tags:
Expand Down Expand Up @@ -222,4 +222,4 @@ components:
type: "string"
format: "uuid"
required:
- shoppingCartItemIds
- shoppingCartItemIds
4 changes: 2 additions & 2 deletions src/main/resources/api-specs/favorite-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
servers:
- url: "http://localhost:8083"
description: "Local development server"
- url: "https://iced-latte.uk/backend"
- url: "http://il.pride.improwised.local/backend"
description: "Production server"

tags:
Expand Down Expand Up @@ -113,4 +113,4 @@ components:
items:
$ref: "product-openapi.yaml#/components/schemas/ProductInfoDto"
required:
- productsDto
- productsDto
2 changes: 1 addition & 1 deletion src/main/resources/api-specs/order-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
servers:
- url: "http://localhost:8083"
description: "Local development server"
- url: "https://iced-latte.uk/backend"
- url: "http://il.pride.improwised.local/backend"
description: "Production server"

tags:
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/api-specs/payment-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
servers:
- url: "http://localhost:8083"
description: "Local development server"
- url: "https://iced-latte.uk/backend"
- url: "http://il.pride.improwised.local/backend"
description: "Production server"

tags:
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/api-specs/product-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
servers:
- url: "http://localhost:8083"
description: "Local development server"
- url: "https://iced-latte.uk/backend"
- url: "http://il.pride.improwised.local/backend"
description: "Production server"

tags:
Expand Down Expand Up @@ -404,4 +404,4 @@ components:
brands:
type: "array"
items:
type: "string"
type: "string"
4 changes: 2 additions & 2 deletions src/main/resources/api-specs/product-review-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
servers:
- url: "http://localhost:8083"
description: "Local development server"
- url: "https://iced-latte.uk/backend"
- url: "http://il.pride.improwised.local/backend"
description: "Production server"

tags:
Expand Down Expand Up @@ -410,4 +410,4 @@ components:
isLike:
type: "boolean"
required:
- isLike
- isLike
4 changes: 2 additions & 2 deletions src/main/resources/api-specs/security-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
servers:
- url: "http://localhost:8083"
description: "Local development server"
- url: "https://iced-latte.uk/backend"
- url: "http://il.pride.improwised.local/backend"
description: "Production server"

tags:
Expand Down Expand Up @@ -226,4 +226,4 @@ components:
code:
type: "string"
password:
type: "string"
type: "string"
2 changes: 1 addition & 1 deletion src/main/resources/api-specs/user-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
servers:
- url: "http://localhost:8083"
description: "Local development server"
- url: "https://iced-latte.uk/backend"
- url: "http://il.pride.improwised.local/backend"
description: "Production server"

tags:
Expand Down

0 comments on commit fbb947d

Please sign in to comment.