Files
spring-jwt/user-service/src/main/resources/application.yml
hoon7566 496711e47e feat(user-service): Google Oauth 추가, github Oauth 삭제
- Google Oauth 추가
- Github Oauth 삭제
2022-02-15 19:03:31 +09:00

46 lines
897 B
YAML

server.port: 60000
spring:
application:
name: user-service
config:
import: optional:configserver:http://127.0.0.1:8888
cloud:
config:
name: user-service
profile: dev
datasource:
url: jdbc:postgresql://localhost:5432/userdb
driver-class-name: org.postgresql.Driver
username: postgres
password: admin
jpa:
hibernate:
ddl-auto: create
generate-ddl: true
open-in-view: false
properties:
hibernate:
default_batch_fetch_size: 1000
eureka:
client:
service-url:
defalutZone: http://localhost:8761/eureka
fetch-registry: true
register-with-eureka: true
instance:
instance-id: ${spring.application.name}:${spring.application.instance_id:${random.value}}
logging:
level:
com.justpickup: DEBUG
# jpa query, parameter 로그 (p6spy)
decorator.datasource.p6spy:
enable-logging: true