Skip to content

Commit a226338

Browse files
committed
refactor: updated
1 parent 912ffe0 commit a226338

13 files changed

Lines changed: 129 additions & 121 deletions

File tree

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
LOG_LEVEL=debug
22

33
FASTIFY_PORT=3000
4-
FASTIFY_PRETTY_LOGS=true
4+
# FASTIFY_PRETTY_LOGS=true # optional
55
FASTIFY_CLOSE_GRACE_DELAY=500
66
FASTIFY_ADDRESS=0.0.0.0
77

88
SWAGGER_USER=""
99
SWAGGER_PASSWORD=""
1010

11-
SECRET_KEY_JWT=secret
11+
SECRET_KEY_JWT=
1212

1313
# Database - Development
1414
DB_HOST=localhost

.github/workflows/nodejs-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [22.x, 24.x]
15+
node-version: [22.x, 24.x, 26.x]
1616

1717
steps:
1818
- uses: actions/checkout@v6

@types/fastify.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import { AuthenticationService } from '../src/modules/authentication/authenticat
55
import { RegisterService } from '../src/modules/register/register.service';
66
import { UsersService } from '../src/modules/users/users.service';
77
import { ChangePasswordService } from '../src/modules/change-password/change-password.service';
8-
import { Role } from "../../shared/role/role.enum";
9-
import { HashingService } from '../../shared/hashing/hashing.service';
8+
import { Role } from '../src/shared/enums/role.enum';
9+
import { HashingService } from '../src/shared/hashing/hashing.service';
1010
import { ForgotPasswordService } from "../src/modules/forgot-password/forgot-password.service";
1111
import { Config } from "../src/plugins/config.plugin";
12-
import { FastifyReply, FastifyRequest } from "fastify/types/request";
12+
import { FastifyReply, FastifyRequest } from 'fastify';
1313
import { MailerService } from '../src/shared/mailer/mailer.service';
1414

1515
declare module "fastify" {

0 commit comments

Comments
 (0)