Merge pull request #98 from TeamBNBN/BE/user

feat: application.properties local variables 적용
This commit is contained in:
김기창 2024-07-24 10:55:00 +09:00 committed by GitHub
commit 17d09b967d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,13 +2,15 @@ spring.application.name=edufocus
server.port=8080 server.port=8080
server.ssl.enabled=false server.ssl.enabled=false
server.servlet.context-path=${CONTEXT_PATH}
# LiveKit configuration # LiveKit configuration
livekit.api.key=${LIVEKIT_API_KEY:devkey} livekit.api.key=${LIVEKIT_API_KEY:devkey}
livekit.api.secret=${LIVEKIT_API_SECRET:secret} livekit.api.secret=${LIVEKIT_API_SECRET:secret}
# JWT Salt (??? ?? ???? ???) # JWT Salt (??? ?? ???? ???)
jwt.salt=ssafy-screte-key-20240404-ssafy-screte-key-20240404-ssafy-screte-key-20240404 jwt.salt=${SALT}
# Access Token ?? ?? (??? ??) # Access Token ?? ?? (??? ??)
jwt.access-token.expiretime=3600000 jwt.access-token.expiretime=3600000
@ -16,9 +18,9 @@ jwt.access-token.expiretime=3600000
# Refresh Token ?? ?? (??? ??) # Refresh Token ?? ?? (??? ??)
jwt.refresh-token.expiretime=86400000 jwt.refresh-token.expiretime=86400000
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/edufocus?useSSL=false spring.datasource.url=${DATA_SOURCE_URL}
spring.datasource.username=root spring.datasource.username=${USER_NAME}
spring.datasource.password=root spring.datasource.password=${USER_PASSWORD}
spring.mvc.pathmatch.matching-strategy=ant_path_matcher spring.mvc.pathmatch.matching-strategy=ant_path_matcher
spring.jpa.database=mysql spring.jpa.database=mysql