Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ pipeline {
sh '''
mkdir -p src/main/resources
# ENV_PROPERTIES_FILE_PATH ๋ณ€์ˆ˜์—๋Š” ์ž„์‹œ ํŒŒ์ผ์˜ ๊ฒฝ๋กœ๊ฐ€ ๋‹ด๊ฒจ์žˆ์Œ
rm -f src/main/resources/env.properties
cp "${ENV_PROPERTIES_FILE_PATH}" src/main/resources/env.properties
echo "${GOOGLE_JSON_B64}" | base64 -d > src/main/resources/google.json
echo "${FIREBASE_KEY_B64}" | base64 -d > src/main/resources/whiplash-firebase-key.json
Expand Down Expand Up @@ -120,4 +121,4 @@ pipeline {
sh 'docker logout || true'
}
}
}
}
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<br><br>

## ๐Ÿค— Introduction
<img width="1920" height="1080" alt="๋„์šธ ํ™”๋ฉด1" src="https://github.com/user-attachments/assets/4bf5a609-a450-486d-8c85-d4442ec2a9a0" />
<img width="1920" height="1080" alt="๋””๋ฐ”์ด์Šค ์„ค๋ช…1" src="https://github.com/user-attachments/assets/a5ee8ce7-2fd8-4d53-82d7-209d35d57908" />

<br><br>
Expand All @@ -20,19 +19,19 @@
| **Language** | ![Java](https://img.shields.io/badge/Java%2017-007396?style=flat&logo=openjdk&logoColor=white) |
| **Persistence** | ![Spring Data JPA](https://img.shields.io/badge/Spring%20Data%20JPA-007396?style=flat&logo=hibernate&logoColor=white) |
| **Database** | ![MySQL](https://img.shields.io/badge/MySQL-4479A1?style=flat&logo=mysql&logoColor=white) ![Redis](https://img.shields.io/badge/Redis-DC382D?style=flat&logo=redis&logoColor=white) |
| **Cloud (AWS)** | ![EC2](https://img.shields.io/badge/EC2-FF9900?style=flat&logo=amazon-ec2&logoColor=white) ![RDS](https://img.shields.io/badge/RDS-527FFF?style=flat&logo=amazon-rds&logoColor=white) ![Lambda](https://img.shields.io/badge/Lambda-FF9900?style=flat&logo=aws-lambda&logoColor=white) |
| **Messaging** | ![FCM](https://img.shields.io/badge/FCM-4285F4?style=flat&logo=google&logoColor=white) |
| **Container & DevOps** | ![Docker](https://img.shields.io/badge/Docker-2496ED?style=flat&logo=docker&logoColor=white) |
| **Monitoring** | ![CloudWatch](https://img.shields.io/badge/CloudWatch-FF4F8B?style=flat&logo=amazon-cloudwatch&logoColor=white) ![Sentry](https://img.shields.io/badge/Sentry-362D59?style=flat&logo=sentry&logoColor=white) |
| **Monitoring** | ![Prometheus](https://img.shields.io/badge/Prometheus-E6522C?style=flat&logo=prometheus&logoColor=white) ![Grafana](https://img.shields.io/badge/Grafana-F46800?style=flat&logo=grafana&logoColor=white) ![Grafana Alloy](https://img.shields.io/badge/Grafana%20Alloy-F46800?style=flat&logo=grafana-alloy&logoColor=white) ![Grafana Loki](https://img.shields.io/badge/Grafana%20Loki-F46800?style=flat&logo=grafana-loki&logoColor=white) |
| **Documentation** | ![Swagger](https://img.shields.io/badge/Swagger-85EA2D?style=flat&logo=swagger&logoColor=black) |
| **Testing** | ![JUnit5](https://img.shields.io/badge/JUnit%205-25A162?style=flat&logo=junit5&logoColor=white) ![Mockito](https://img.shields.io/badge/Mockito-007396?style=flat&logo=java&logoColor=white) |
| **CI/CD** | ![GitHub Actions](https://img.shields.io/badge/GitHub%20Actions-2088FF?style=flat&logo=githubactions&logoColor=white) |
| **CI/CD** | ![Jenkins](https://img.shields.io/badge/Jenkins-D24939?style=flat&logo=jenkins&logoColor=white) |


<br><br>

## ๐Ÿ›๏ธ Architecture
<img width="2793" height="2096" alt="๋ˆˆ ๋– _Dev_์ธํ”„๋ผ๊ตฌ์กฐ๋„_v1 4" src="https://github.com/user-attachments/assets/09c961cb-589a-49ab-8112-97d13c9d3bf2" />
<img width="3164" height="1888" alt="แ„‹แ…ฎแ†ซแ„‹แ…งแ†ผ_แ„‹แ…ตแ†ซแ„‘แ…ณแ„…แ…กแ„€แ…ฎแ„Œแ…ฉแ„ƒแ…ฉ" src="https://github.com/user-attachments/assets/1d69554d-3522-4883-8ba1-e6b7485d8c0e" />


<br><br>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private Server getDevServer() {
private Server getProdServer() {
return new Server()
.url(serverUrl)
.description("Dev Server");
.description("Prod Server");
}

@Bean
Expand Down
Loading