Skip to content

Commit bfc392c

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 05ffa8a + eed1e21 commit bfc392c

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

appspec.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,17 @@ version: 0.0
22
os: linux
33
files:
44
- source: /
5-
destination: /home/ubuntu/app
6-
overwrite: yes
5+
destination: /home/ec2-user/app/
76

87
permissions:
98
- object: /
109
pattern: "**"
11-
owner: ubuntu
12-
group: ubuntu
10+
owner: ec2-user
11+
group: ec2-user
1312
mode: 755
1413

1514
hooks:
16-
AfterInstall:
15+
ApplicationStart:
1716
- location: scripts/deploy.sh
18-
timeout: 60
19-
runas: ubuntu
17+
timeout: 360
18+
runas: ec2-user

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'Chalkac'
1+
rootProject.name = 'Chalkac'

src/main/java/com/rtu/chalkac/global/HealthCheckController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ public class HealthCheckController {
99

1010
@GetMapping("/health")
1111
public ResponseEntity<String> healthCheck() {
12-
return ResponseEntity.ok().body("OK");
12+
return ResponseEntity.ok().body("OK!");
1313
}
1414
}

0 commit comments

Comments
 (0)