Skip to content

Commit 17b3063

Browse files
committed
Merge branch 'dev' of https://github.com/2025-Shifterz/Offnal-BE into dev
2 parents 9642bd6 + 5c1336f commit 17b3063

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

src/main/resources/application-dev.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ spring:
77
properties:
88
hibernate:
99
format_sql: true
10-
10+
servlet:
11+
multipart:
12+
enabled: true
13+
max-file-size: 10MB # 파일 1개 최대 크기
14+
max-request-size: 10MB # 요청 전체 최대 크기
1115
datasource:
1216
driver-class-name: com.mysql.cj.jdbc.Driver
1317
url: ${URL}
@@ -59,4 +63,4 @@ bedrock:
5963
apiCallMs: ${BEDROCK_APICALL_MS}
6064
aws:
6165
bedrock:
62-
api-key: ${AWS_BEARER_TOKEN_BEDROCK:}
66+
api-key: ${AWS_BEARER_TOKEN_BEDROCK:}

src/main/resources/application-prod.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ spring:
77
properties:
88
hibernate:
99
format_sql: false
10+
servlet:
11+
multipart:
12+
enabled: true
13+
max-file-size: 10MB # 파일 1개 최대 크기
14+
max-request-size: 10MB # 요청 전체 최대 크기
1015

1116
datasource:
1217
driver-class-name: com.mysql.cj.jdbc.Driver
@@ -64,4 +69,4 @@ bedrock:
6469
apiCallMs: ${BEDROCK_APICALL_MS}
6570
aws:
6671
bedrock:
67-
api-key: ${AWS_BEARER_TOKEN_BEDROCK:}
72+
api-key: ${AWS_BEARER_TOKEN_BEDROCK:}

0 commit comments

Comments
 (0)