Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2d31ae8
마이페이지 추가
jinni1 May 17, 2025
187e209
Fix: 파일명 decodeURIComponent 함수 제거
ljm1102 May 17, 2025
a3a5819
Feat: 카카오 로그인 구현
soooong7 May 18, 2025
0f3c124
Fix: userRoutes import 수정
soooong7 May 18, 2025
20ca7cf
Chore: 카카오 관련 변수 추가
soooong7 May 18, 2025
bda2421
Update CICD.yml
soooong7 May 18, 2025
0d83702
Fix: userRoutes import 수정
soooong7 May 19, 2025
e04a416
Merge branch 'develop' of https://github.com/Ref-Hub/RefHub_BE into d…
soooong7 May 19, 2025
f5ab7f1
Feat: User provider 필드 추가
soooong7 May 19, 2025
2f4e7ea
Feat: 로그인 인증 확인 로그 추가
soooong7 May 19, 2025
2902b04
Feat: kakaoStrategy 로직 개선
soooong7 May 19, 2025
8187e91
Feat: 중복 이메일 카카오 연동 구현
soooong7 May 20, 2025
2b87bc5
Feat: User provider 필드 업데이트 스크립트 추가
soooong7 May 20, 2025
5151b43
Feat: 탈퇴 계정 복구 여부 응답 추가
soooong7 May 20, 2025
46049e2
Feat: 계정 삭제 로그 실행 시간 추가
soooong7 May 20, 2025
b4e936d
Feat: Add profileImage in Collection Sharing
KwakSsi38 May 25, 2025
adec3fb
Feat: updatedAt 필드 추가 및 수동 변환 라우터 추가
KwakSsi38 May 27, 2025
8911c61
Feat: 레퍼런스 생성 및 수정 시 컬렉션 updatedAt 업데이트
KwakSsi38 May 27, 2025
97be390
Feat: 레퍼런스 스키마에 updatedAt 최신순 인덱스 추가
KwakSsi38 May 27, 2025
8d7553b
Feat: 마이이지 백엔드 응답에 provider 정보 추가
hwouu May 30, 2025
1fe4548
Feat: referenceController에서 오류 처리 리팩토링
hwouu May 30, 2025
9283749
Feat: 카카오 로그인에서 계정 복구 여부 추가 및 처리 로직 개선
hwouu May 31, 2025
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
8 changes: 6 additions & 2 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ jobs:
AWS_SECRET_ACCESS_KEY: '${{ secrets.AWS_SECRET_ACCESS_KEY }}',
S3_BUCKET_NAME: '${{ secrets.S3_BUCKET_NAME }}',
S3_BASE_URL: '${{ secrets.S3_BASE_URL }}',
EXTENSION_ID: '${{ vars.EXTENSION_ID }}'
EXTENSION_ID: '${{ vars.EXTENSION_ID }}',
KAKAO_REST_API_KEY: '${{ secrets.KAKAO_REST_API_KEY }}',
KAKAO_REDIRECT_URI: '${{ secrets.KAKAO_REDIRECT_URI_PROD }}'
}
}]
};" > ecosystem.prod.config.cjs
Expand All @@ -84,7 +86,9 @@ jobs:
AWS_SECRET_ACCESS_KEY: '${{ secrets.AWS_SECRET_ACCESS_KEY }}',
S3_BUCKET_NAME: '${{ secrets.S3_BUCKET_NAME }}',
S3_BASE_URL: '${{ secrets.S3_BASE_URL }}',
EXTENSION_ID: '${{ vars.EXTENSION_ID }}'
EXTENSION_ID: '${{ vars.EXTENSION_ID }}',
KAKAO_REST_API_KEY: '${{ secrets.KAKAO_REST_API_KEY }}',
KAKAO_REDIRECT_URI: '${{ secrets.KAKAO_REDIRECT_URI_DEV }}'
}
}]
};" > ecosystem.dev.config.cjs
Expand Down
2 changes: 2 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import express from "express";
import cors from "cors";
import connectDB from "./db.js";
import dotenv from "dotenv"
import passport from 'passport';

import userRoutes from "./routes/userRoutes.js";
import collectionRoutes from "./routes/collectionRoutes.js";
Expand Down Expand Up @@ -31,6 +32,7 @@ app.use(
);
app.use(express.json({ limit: "50mb" }));
app.use(express.urlencoded({ extended: true, limit: "50mb" }));
app.use(passport.initialize());

// DB 연결
connectDB();
Expand Down
Loading