Skip to content

Commit 3a246b0

Browse files
authored
Merge pull request #25 from prgrms-web-devcourse-final-project/refactor/24-redis-remove
refactor[redis]: redis 관련 코드 삭제
2 parents 658d3ff + 6fefa9e commit 3a246b0

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

backend/.env.default

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
SPRING__SECURITY__OAUTH2__CLIENT__REGISTRATION__KAKAO__CLIENT_ID=NEED_TO_SET
2-
SPRING__SECURITY__OAUTH2__CLIENT__REGISTRATION__GOOGLE__CLIENT_ID=NEED_TO_SET
3-
SPRING__SECURITY__OAUTH2__CLIENT__REGISTRATION__GOOGLE__CLIENT_SECRET=NEED_TO_SET
42
SPRING__SECURITY__OAUTH2__CLIENT__REGISTRATION__NAVER__CLIENT_ID=NEED_TO_SET
53
SPRING__SECURITY__OAUTH2__CLIENT__REGISTRATION__NAVER__CLIENT_SECRET=NEED_TO_SET
64

75
CUSTOM__JWT__SECRET_KEY=NEED_TO_SET
86

9-
REDIS_HOST=NEED_TO_SET
10-
REDIS_PORT=NEED_TO_SET
11-
127
DB_HOST=NEED_TO_SET
138
DB_PORT=NEED_TO_SET
149
DB_NAME=NEED_TO_SET

backend/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ repositories {
2727
dependencies {
2828
implementation 'org.springframework.boot:spring-boot-starter-cache'
2929
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
30-
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
3130
implementation 'org.springframework.boot:spring-boot-starter-security'
3231
implementation 'org.springframework.boot:spring-boot-starter-validation'
3332
implementation 'org.springframework.boot:spring-boot-starter-web'

backend/docker-compose.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,6 @@ services:
1313
- "${DB_PORT}:${DB_PORT}"
1414
volumes:
1515
- postgres-data:/var/lib/postgresql/data
16-
# Redis 서비스
17-
redis:
18-
image: redis:latest
19-
container_name: redis
20-
restart: always
21-
ports:
22-
- "${REDIS_PORT}:${REDIS_PORT}"
23-
volumes:
24-
- redis-data:/data
2516

2617
volumes:
2718
postgres-data:
28-
redis-data:

0 commit comments

Comments
 (0)