Skip to content

Commit

Permalink
build: gradle 테스트 활성
Browse files Browse the repository at this point in the history
- 필요한 key 의존성 주입을 위해 수정

resolve: #30
  • Loading branch information
BinarySstar committed Jan 20, 2025
1 parent 8c09575 commit e7c2ad1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,33 @@ server:
secure: true # HTTPS 사용 시 true
http-only: true
same-site: none # 다른 도메인 간 쿠키 전송 허용

cloud:
aws:
s3:
bucket: mock-bucket-name
credentials:
access-key: mock-access-key
secret-key: mock-secret-key
region:
static: "ap-northeast-2"
auto: false
stack:
auto: false

datasource:
url: jdbc:h2:mem:testdb;MODE=MYSQL
driver-class-name: org.h2.Driver
username: sa
password:
h2:
console:
enabled: true
path: /h2-console
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
format_sql: true
show_sql: true

0 comments on commit e7c2ad1

Please sign in to comment.