Skip to content

Commit 63639ff

Browse files
authored
Merge pull request #26 from dnd-side-project/dev
CI/CD ์ˆ˜์ • ๋ฐ 1์ฐจ ๋ฐฐํฌ ํ…Œ์ŠคํŠธ
2 parents 97b70ee + 062b0a6 commit 63639ff

File tree

81 files changed

+2278
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+2278
-10
lines changed

โ€Ž.github/workflows/deploy-api-server.ymlโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
ECS_CLUSTER: joyful-eagle-kco6mk
1818
ECS_SERVICE: api-server-service-xojhseb1
1919
ECS_TASK_DEFINITION: api-server/deullak-api-task-revision1.json
20-
IMAGE_TAG: latest
20+
IMAGE_TAG: api-latest
2121

2222
jobs:
2323
deploy:

โ€Ž.github/workflows/deploy-chat-server.ymlโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
ECS_CLUSTER: joyful-eagle-kco6mk
1818
ECS_SERVICE: chat-server-service-03ciwwyj
1919
ECS_TASK_DEFINITION: chat-server/chat-server-revision1.json
20-
IMAGE_TAG: latest
20+
IMAGE_TAG: chat-latest
2121

2222
jobs:
2323
deploy:

โ€Ž.gitignoreโ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ out/
3737
.vscode/
3838
**/application.yml
3939
.DS_Store
40+
41+
.yml

โ€ŽREADME.mdโ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@
1212
<img src="https://github.com/user-attachments/assets/0c258c70-6eac-4308-80e3-04516a657d81" alt="CI/CD ํ๋ฆ„๋„" width="600"/>
1313
</div>
1414

15+
<img width="842" height="595" alt="be" src="https://github.com/user-attachments/assets/856dd0d5-1afb-401a-835c-670c1244519b" />
16+
1517
#### Module and Package Structure

โ€Žapi-server/.gitignoreโ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ out/
3535

3636
### VS Code ###
3737
.vscode/
38+
39+
40+
*.yml

โ€Žapi-server/deullak-api-task-revision1.jsonโ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"containerDefinitions": [
44
{
55
"name": "api-container",
6-
"image": "814022331893.dkr.ecr.ap-northeast-2.amazonaws.com/dulakreposiotry",
6+
"image": "814022331893.dkr.ecr.ap-northeast-2.amazonaws.com/dulakreposiotry:api-latest",
77
"cpu": 0,
88
"portMappings": [
99
{
@@ -100,4 +100,4 @@
100100
"registeredAt": "2025-08-13T05:31:32.754Z",
101101
"registeredBy": "arn:aws:iam::814022331893:root",
102102
"tags": []
103-
}
103+
}

โ€Žapi-server/src/main/java/com/example/demo/ApiServerApplication.javaโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import org.springframework.boot.SpringApplication;
44
import org.springframework.boot.autoconfigure.SpringBootApplication;
55

6-
@SpringBootApplication
6+
@SpringBootApplication(scanBasePackages = "com.example")
77
public class ApiServerApplication {
88

99
public static void main(String[] args) {

โ€Žchat-server/.gitignoreโ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ out/
3535

3636
### VS Code ###
3737
.vscode/
38+
39+
40+
*.yml

โ€Žchat-server/chat-server-revision1.jsonโ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"containerDefinitions": [
44
{
55
"name": "chat-container",
6-
"image": "814022331893.dkr.ecr.ap-northeast-2.amazonaws.com/dulakreposiotry",
6+
"image": "814022331893.dkr.ecr.ap-northeast-2.amazonaws.com/dulakreposiotry:chat-latest",
77
"cpu": 0,
88
"portMappings": [
99
{
@@ -100,4 +100,4 @@
100100
"registeredAt": "2025-08-13T05:34:03.844Z",
101101
"registeredBy": "arn:aws:iam::814022331893:root",
102102
"tags": []
103-
}
103+
}

โ€Žchat-server/src/main/java/com/example/demo/ChatServerApplication.javaโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import org.springframework.boot.SpringApplication;
44
import org.springframework.boot.autoconfigure.SpringBootApplication;
55

6-
@SpringBootApplication
6+
@SpringBootApplication(scanBasePackages = "com.example")
77
public class ChatServerApplication {
88

99
public static void main(String[] args) {

0 commit comments

Comments
ย (0)