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 .github/workflows/backend-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
PUPPETEER_SKIP_DOWNLOAD: true
run: |
cd /home/runner/apps/FairInSight
cd /home/deploy/apps/FairInSight

git pull origin dev

Expand Down
3 changes: 1 addition & 2 deletions backend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ SALT_ROUNDS=10

# CORS & Host
CORS_ALLOW=*
HOST=http://localhost:3000, http://localhost:5173

HOST=http://localhost:3000
# Cloudinary
CLOUDINARY_NAME=
CLOUDINARY_API_KEY=
Expand Down
2 changes: 1 addition & 1 deletion backend/src/core/api/auth/auth.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AuthService } from '../../modules/auth/service/auth.service';
import { RegisterDto, LoginDto, ForgotPasswordDto, VerifyOtpDto, ResetPasswordDto, UpdateMyProfileDto, RefreshTokenDto, LogoutDto } from '../../modules/auth';
import { ValidHttpResponse } from '../../../packages/handler/response/validHttp.response';

class Controller {
class Controller {
constructor() {
this.service = AuthService;
}
Expand Down
2 changes: 1 addition & 1 deletion backend/src/core/api/auth/auth.resolver.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const AuthResolver = Module.builder()
prefixPath: '/auth',
tag: 'auth',
module: 'AuthModule'
})
})
.register([
{
route: '/login',
Expand Down
5 changes: 0 additions & 5 deletions backend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3550,11 +3550,6 @@ fs.realpath@^1.0.0:
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==

fsevents@~2.3.2:
version "2.3.3"
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==

ftp@^0.3.10:
version "0.3.10"
resolved "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz"
Expand Down
Loading