Skip to content

Commit

Permalink
HOTIFX: application-local ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
hyxklee committed Aug 27, 2024
1 parent 80c9f10 commit 8748a0f
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions src/main/resources/application-local.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spring:
datasource:
url: jdbc:mysql://localhost:3306/weeth_v2
url: jdbc:mysql://localhost:3306/weeth
username: admin
password: Weeth1234!
driver-class-name: com.mysql.cj.jdbc.Driver
Expand All @@ -13,21 +13,15 @@ spring:
ddl-auto: validate
servlet:
multipart:
max-file-size: 30MB
max-request-size: 30MB
max-file-size: 20MB
max-request-size: 40MB
resolve-lazily: true

# MySQL ์œ ์ € ์ƒ์„ฑ ๋ฐ ์Šคํ‚ค๋งˆ ์ƒ์„ฑ ํ„ฐ๋ฏธ๋„ ๋ช…๋ น์–ด
# ํ„ฐ๋ฏธ๋„ ํ˜น์€ ํ”„๋กœ๊ทธ๋žจ์œผ๋กœ ๋ฃจํŠธ ์‚ฌ์šฉ์ž ์ ‘์† ํ›„,
# 1. CREATE DATABASE weeth
# 2. CREATE USER 'admin'@'%' identified by 'Weeth1234!'
# 3. GRANT ALL PRIVILEGES ON *.* 'admin'@'%';

weeth:
jwt:
key: f825f47437e5088c37e9e1fcd93fbc61dbb06d54b34471e47e9475e6f607d35f
access:
expiration: 999999999999
expiration: ${ACCESS_EXP}
header: ${ACCESS_HEAD}
refresh:
expiration: ${REFRESH_EXP}
Expand Down

0 comments on commit 8748a0f

Please sign in to comment.