Skip to content

Commit

Permalink
fix: change api url to original
Browse files Browse the repository at this point in the history
  • Loading branch information
Luv7804 committed Aug 7, 2024
1 parent 9d55b80 commit d7674f4
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 39 deletions.
37 changes: 13 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,35 +16,24 @@
</div>

## Table of Contents
- [Table of Contents](#table-of-contents)
- [Introduction](#introduction)
- [🔥 Github-Stars 🔥](#-github-stars-)
- [Github-Stars](#Github-Stars)

- [Tech Stack](#tech-stack)
- [Quick Start](#quick-start)
- [🚢 Deployment](#-deployment)
- [🛤 Forking and tweaking](#-forking-and-tweaking)
- [🙋‍♂️ How to report a bug?](#️-how-to-report-a-bug)
- [💎 Now to propose a new feature?](#-now-to-propose-a-new-feature)
- [😍 Contributions](#-contributions)
- [😎 I want to write some code](#-i-want-to-write-some-code)
- [🚦Pay attention to issue labels!](#pay-attention-to-issue-labels)
- [🟩 Ready to implement](#-ready-to-implement)
- [🟨 Discussion is needed](#-discussion-is-needed)
- [🟥 Questionable](#-questionable)
- [👍 Our top contributors](#-our-top-contributors)
- [😎 Iced Latte project creator / Product owner / Tech Lead](#-iced-latte-project-creator--product-owner--tech-lead)
- [😇 Project manager](#-project-manager)
- [🕵️‍♀️ QA engineers](#️️-qa-engineers)
- [⚙️ Backend developers](#️-backend-developers)
- [🖥️ Frontend developers](#️-frontend-developers)
- [🎨 UX/UI designers](#-uxui-designers)
- [📊 Business and system analysts](#-business-and-system-analysts)
- [👩‍💼 License](#-license)
- [📞 Contact (Community and Support)](#-contact-community-and-support)
- [Deployment](#-deployment)
- [Forking and tweaking](#-forking-and-tweaking)
- [How to report a bug?](#-how-to-report-a-bug)
- [Now to propose a new feature?](#-now-to-propose-a-new-feature)
- [Contributions](#-contributions)
- [Code of Conduct](#code-of-conduct)
- [Our top contributors](#-our-top-contributors)
- [License](#-license)
- [Contact](#-contact-)

## Introduction

**🟥 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.
**🟥 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.

🟥 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 @@ -118,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](http://il.pride.improwised.local/backend/api/docs/swagger-ui/index.html).
Swagger REST APIs contracts described [here](https://iced-latte.uk/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=http://il.pride.improwised.local/backend/api/v1/auth/google/callback&" +
"redirect_uri=https://iced-latte.uk/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("http://il.pride.improwised.local/backend/api/v1/auth/google/callback")
.setRedirectUri("https://iced-latte.uk/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: "http://il.pride.improwised.local/backend"
- url: "https://iced-latte.uk/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: "http://il.pride.improwised.local/backend"
- url: "https://iced-latte.uk/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: "http://il.pride.improwised.local/backend"
- url: "https://iced-latte.uk/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: "http://il.pride.improwised.local/backend"
- url: "https://iced-latte.uk/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: "http://il.pride.improwised.local/backend"
- url: "https://iced-latte.uk/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: "http://il.pride.improwised.local/backend"
- url: "https://iced-latte.uk/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: "http://il.pride.improwised.local/backend"
- url: "https://iced-latte.uk/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: "http://il.pride.improwised.local/backend"
- url: "https://iced-latte.uk/backend"
description: "Production server"

tags:
Expand Down

0 comments on commit d7674f4

Please sign in to comment.