-
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.
chore: ci.yaml 변경 및 application.properties 추가
- Loading branch information
1 parent
e757c3f
commit 836a886
Showing
2 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
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
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,20 @@ | ||
|
||
|
||
spring.config.import=aws-parameterstore:/config/my-music-note/ | ||
|
||
|
||
spring.jpa.hibernate.naming.implicit-strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy | ||
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect | ||
|
||
spring.datasource.url=${jdbc-url} | ||
spring.datasource.username=${jdbc-username} | ||
spring.datasource.password=${jdbc-password} | ||
|
||
|
||
openai.url.prompt=https://api.openai.com/v1/chat/completions | ||
openai.secret-key=${jwt-secret} | ||
|
||
jwt.secret=${jwt-secret} | ||
jwt.issuer=my-music-note | ||
jwt.access.expiration=1800000 | ||
jwt.refresh.expiration=3600000 |