Skip to content

Commit

Permalink
Merge pull request #164 from supercoding-commerce/dev
Browse files Browse the repository at this point in the history
read me 수정
  • Loading branch information
MoonJongHyeon1095 authored Dec 6, 2023
2 parents df9973d + 983234a commit 10af84b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# BE
## **_🛒 Guerilla Commerce_**
>**판매자와 구매자의 실시간 채팅, 실시간 라이브 커머스가 가능한 의류 쇼핑몰 프로젝트**<br/><br/>
>**[📎 노션](https://ajar-hawthorn-920.notion.site/013dd1e3ad3e46b4a8ad784affe6ac04?pvs=4)**<br/><br/>
## 🛠️ **_프로젝트 아키텍처_**
![아키텍처](https://github.com/supercoding-commerce/BE/assets/109948801/68388150-e627-4817-be27-bc2e1665d00d)
<br>
<h2><b>tech stack</b></h3>
## ⚙️ **_기술 스택_**
<p>
<img src="https://img.shields.io/badge/Spring Boot-6DB33F?style=for-the-badge&logo=Spring Boot&logoColor=white">
<img src="https://img.shields.io/badge/Spring Security-6DB33F?style=for-the-badge&logo=Spring Security&logoColor=white">
<img src="https://img.shields.io/badge/Nest JS-E0234E?style=for-the-badge&logo=NestJS&logoColor=white">
<img src="https://img.shields.io/badge/Web Socket-010101?style=for-the-badge&logo=Web Socket&logoColor=white">
<img src="https://img.shields.io/badge/Web RTC-010101?style=for-the-badge&logo=WebRTC&logoColor=white">
<img src="https://img.shields.io/badge/Rabbit MQ-FF6600?style=for-the-badge&logo=rabbitmq&logoColor=white">
<br>
<img src="https://img.shields.io/badge/NginX-009639?style=for-the-badge&logo=NGINX&logoColor=white">
<img src="https://img.shields.io/badge/Docker-2496ED?style=for-the-badge&logo=Docker&logoColor=white">
<img src="https://img.shields.io/badge/MySQL-4479A1?style=for-the-badge&logo=MySQL&logoColor=white">
<img src="https://img.shields.io/badge/MongoDB-47A248?style=for-the-badge&logo=MongoDB&logoColor=white">
<img src="https://img.shields.io/badge/Amazon AWS-FF9900?style=for-the-badge&logo=Amazon AWS&logoColor=white">
<img src="https://img.shields.io/badge/Github Actions-2088FF?style=for-the-badge&logo=Github Actions&logoColor=white">
<br>
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class WebSecurityConfig {
private final JwtUtil jwtUtil;
private final UserDetailsServiceImpl userDetailsService;
private static final String[] PERMIT_URL_ARRAY = {
"/","/v1/api/user/**","/v1/api/product/**","/v1/api/coupon","/GuerrillaCommerce", "/v1/api/navi",
"/v1/api/user/**","/v1/api/product/**","/v1/api/coupon","/GuerrillaCommerce", "/v1/api/health-check",
"/api/v2/**", "/swagger-ui.html", "/swagger/**","/swagger-resources/**", "/webjars/**", "/v2/api-docs"
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@RestController
public class ServerCheckController {

@GetMapping("/")
@GetMapping("/v1/api/health-check")
public ResponseEntity<String> getHealthCheck(){
return ResponseEntity.ok("살아있어요!!");
}
Expand Down

0 comments on commit 10af84b

Please sign in to comment.