Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setting: redis 관련 설정 추가 #93

Merged
merged 1 commit into from
Oct 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,9 @@ services:
- 80:80
depends_on:
- web

redis:
container_name: redis
image: redis:latest
ports:
- 6379:6379
3 changes: 3 additions & 0 deletions src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ spring:
use_sql_comments: true
show-sql: true
database-platform: org.hibernate.dialect.MySQL8Dialect
redis:
port: 6379
host: redis
mvc:
pathmatch:
matching-strategy: ant_path_matcher
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ spring:
show-sql: true
database-platform: org.hibernate.dialect.MySQL8Dialect
generate-ddl: true
redis:
port: 6379
host: redis
mvc:
pathmatch:
matching-strategy: ant_path_matcher


oauth2:
kakao:
infoUrl: https://kapi.kakao.com
Expand Down
13 changes: 0 additions & 13 deletions src/main/resources/redis-server.yml

This file was deleted.

Loading