mirror of
https://github.com/cna-bootcamp/lifesub.git
synced 2025-12-06 08:06:24 +00:00
35 lines
757 B
YAML
35 lines
757 B
YAML
# src/test/resources/application-e2e-test.yml
|
|
|
|
spring:
|
|
application:
|
|
name: member-service-test
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: create-drop
|
|
show-sql: true
|
|
properties:
|
|
hibernate:
|
|
format_sql: true
|
|
dialect: org.hibernate.dialect.PostgreSQLDialect
|
|
|
|
# JWT 설정
|
|
jwt:
|
|
secret-key: testSecretKeyForE2ETestingPurposesOnlyDoNotUseInProduction
|
|
access-token-validity: 3600000 # 1시간
|
|
refresh-token-validity: 86400000 # 24시간
|
|
|
|
allowed-origins: http://localhost:3000
|
|
|
|
# 로깅 설정
|
|
logging:
|
|
level:
|
|
com.unicorn: DEBUG
|
|
org.hibernate.SQL: DEBUG
|
|
org.hibernate.type.descriptor.sql.BasicBinder: TRACE
|
|
|
|
# 테스트용 사용자 설정
|
|
test:
|
|
user:
|
|
id: testuser
|
|
password: Test1234!
|
|
name: Test User |