Skip to content
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
2 changes: 1 addition & 1 deletion cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
- set
- image
- deployment/groomeong-backend
- backend-sha256-1=asia.gcr.io/project-groomeong/backend:2.1
- backend-sha256-1=asia.gcr.io/project-groomeong/backend:2.2
env:
- CLOUDSDK_COMPUTE_ZONE=asia-northeast3
- CLOUDSDK_CONTAINER_CLUSTER=autopilot-cluster-5
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
my-backend:
image: asia.gcr.io/project-groomeong/backend:2.1
image: asia.gcr.io/project-groomeong/backend:2.2
platform: linux/x86_64
build:
context: .
Expand Down
2 changes: 1 addition & 1 deletion src/apis/auth/strategies/jwt-social-google.strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class JwtGoogleStrategy extends PassportStrategy(Strategy, 'google') {
super({
clientID: process.env.GOOGLE_CLIENT_ID,
clientSecret: process.env.GOOGLE_CLIENT_SECRET,
callbackURL: 'https://groomeong.store/login/google',
callbackURL: 'https://groomeong.shop/login/google',
scope: ['email', 'profile'],
});
}
Expand Down
4 changes: 2 additions & 2 deletions src/apis/auth/strategies/jwt-social-kakao.strategy.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { PassportStrategy } from '@nestjs/passport';
import { Strategy, Profile } from 'passport-kakao';

export class JwtKakaoStrategy extends PassportStrategy(Strategy, 'KaKao') {
export class JwtKakaoStrategy extends PassportStrategy(Strategy, 'kakao') {
constructor() {
super({
clientID: process.env.KAKAO_CLIENT_ID,
clientSecret: process.env.KAKAO_CLIENT_SECRET,
callbackURL: 'https://groomeong.store/login/kakao',
callbackURL: 'https://groomeong.shop/login/kakao',
scope: ['account_email', 'profile_nickname'],
});
}
Expand Down