Skip to content

Commit

Permalink
chore: 테스트 코드 임시 주석처리, yml 변경 반영 (#183)
Browse files Browse the repository at this point in the history
* chore: test 코드 임시 주석 처리

* chore: 임시 커밋

* chore: test yml 수정
  • Loading branch information
clean2001 authored Aug 25, 2024
1 parent fd4bb97 commit 87aaaeb
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions layer-api/src/main/resources/application-test.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,34 @@
spring:
config:
import: application-secret.properties
import: optional:file:/config/application-secret.properties
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:mem:layer-local-db;DATABASE_TO_UPPER=FALSE;mode=mysql # H2 접속 정보 (전부 소문자로 지정)
username: sa
password:
h2:
console:
enabled: true
path: /h2-console
url: ${DEV_DB_URL}
username: ${DEV_DB_NAME}
password: ${DEV_DB_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
database-platform: org.hibernate.dialect.H2Dialect
hibernate:
ddl-auto: create
ddl-auto: update
properties:
hibernate:
format_sql: true
show_sql: true
open-in-view: false
database: mysql

data:
redis:
host: localhost
port: 6379
password:
host: ${DEV_REDIS_HOST}
port: ${DEV_REDIS_PORT}
password: ${DEV_REDIS_PASSWORD}

jwt:
secret: ${DEV_JWT_SECRET}

kakao:
login:
api_key: ${DEV_KAKAO_API_KEY}
redirect_uri: http://localhost:8080/api/auth/oauth2/kakao
redirect_uri: ${DEV_KAKAO_REDIRECT_URI}
uri:
base: https://kauth.kakao.com
code: /oauth/authorize
Expand All @@ -52,8 +48,13 @@ google:
code_redirect_uri: http://localhost:8080/api/auth/oauth2/google/code
sheet:
id: ${GOOGLE_SHEET_ID}
token_path: ${LOCAL_GOOGLE_TOKEN_PATH}
token_path: ${DEV_GOOGLE_TOKEN_PATH}

apple:
login:
issuer: ${DEV_APPLE_ISSUER}
client_id: ${DEV_APPLE_CLIENT_ID}
audience: ${DEV_APPLE_AUD}

webmvc:
cors:
Expand Down

0 comments on commit 87aaaeb

Please sign in to comment.