-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
21 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
zzansuni-api-server/app/src/main/resources/application-doc.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
springdoc: | ||
default-consumes-media-type: application/json;charset=UTF-8 | ||
default-produces-media-type: application/json;charset=UTF-8 | ||
use-fqn: true # 패키지 경로를 포함한 클래스명으로 문서화 (FOR inner static class) | ||
--- | ||
spring: # dev,prod profile | ||
config: | ||
activate: | ||
on-profile: dev, prod | ||
server-url: ${SERVER_URL} |
15 changes: 15 additions & 0 deletions
15
zzansuni-api-server/app/src/main/resources/application-s3.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
spring: # dev,prod profile | ||
config: | ||
activate: | ||
on-profile: dev, prod | ||
cloud: | ||
aws: | ||
s3.bucket: ${S3_BUCKET} | ||
credentials: | ||
access-key: ${S3_ACCESS_KEY} | ||
secret-key: ${S3_SECRET_KEY} | ||
region: | ||
static: ap-northeast-2 | ||
auto: false | ||
stack: | ||
auto: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters