goldenChat base source add
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
# Docker 컨테이너 환경 설정 (SPRING_PROFILES_ACTIVE=docker 일 때 적용)
|
||||
spring:
|
||||
datasource:
|
||||
url: jdbc:mysql://mysql:3306/stockAnalyzer?useSSL=false&serverTimezone=Asia/Seoul&characterEncoding=UTF-8&allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true
|
||||
username: ${DB_USERNAME:stock}
|
||||
password: ${DB_PASSWORD:analyzer}
|
||||
hikari:
|
||||
connection-timeout: 60000
|
||||
initialization-fail-timeout: 60000
|
||||
|
||||
jpa:
|
||||
hibernate:
|
||||
ddl-auto: validate
|
||||
|
||||
flyway:
|
||||
enabled: true
|
||||
baseline-on-migrate: true
|
||||
baseline-version: 0
|
||||
validate-on-migrate: false
|
||||
|
||||
goldenchart:
|
||||
cors:
|
||||
allowed-origins:
|
||||
- "*"
|
||||
|
||||
logging:
|
||||
level:
|
||||
com.goldenchart: INFO
|
||||
org.flywaydb: INFO
|
||||
Reference in New Issue
Block a user