Skip to content

Commit

Permalink
fix :로컬 원격 커밋 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjun01 committed Nov 9, 2024
1 parent 5fae1e0 commit c395976
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/application-local.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
spring:
datasource:
url: jdbc:mysql://localhost:3307/x
username: root
password: root
url: ${DB_URL}
username: ${DB_USER}
password: ${DB_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
show-sql: true
Expand All @@ -13,8 +13,8 @@ spring:
ddl-auto: update
data:
redis:
port: 6379
host: localhost
port: ${REDIS_PORT}
host: ${REDIS_HOST}
mongodb:
uri: mongodb://localhost:27017/testdb

Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ springdoc:
tags-sorter: alpha

google:
client-id: "40557714074-1f0jhi5lrlqtls0c05bagj890hsb1m9v.apps.googleusercontent.com"
client-secret: "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"
redirect-uri: "http://localhost:3000/login/oauth2/code/google"
client-id: ${GOOGLE_CLIENT_ID}
client-secret: ${GOOGLE_CLIENT_SECRET}
redirect-uri: ${GOOGLE_REDIRECT_URI}
grant-type: authorization_code
authorization-uri: https://accounts.google.com/o/oauth2/auth
token-uri: https://oauth2.googleapis.com/token
Expand Down

0 comments on commit c395976

Please sign in to comment.