Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.64
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
test /
dist /
Delete
Unzip
Name
Size
Permission
Date
Action
common
[ DIR ]
drwxrwxrwx
2025-03-22 07:46
config
[ DIR ]
drwxrwxrwx
2025-03-22 07:46
database
[ DIR ]
drwxrwxrwx
2025-03-22 07:46
dist
[ DIR ]
drwxrwxrwx
2025-03-22 10:14
migrations
[ DIR ]
drwxrwxrwx
2025-03-22 07:46
modules
[ DIR ]
drwxrwxrwx
2025-03-22 07:46
scripts
[ DIR ]
drwxrwxrwx
2025-03-22 07:46
.htaccess
197
B
-r--r--r--
2026-06-01 03:28
app.controller.d.ts
181
B
-rw-rw-rw-
2025-03-22 07:46
app.controller.js
1.57
KB
-rw-rw-rw-
2025-03-22 07:46
app.controller.js.map
433
B
-rw-rw-rw-
2025-03-22 07:46
app.module.d.ts
173
B
-rw-rw-rw-
2025-03-22 07:46
app.module.js
5.58
KB
-rw-rw-rw-
2025-03-22 07:46
app.module.js.map
1.79
KB
-rw-rw-rw-
2025-03-22 07:46
app.service.d.ts
60
B
-rw-rw-rw-
2025-03-22 07:46
app.service.js
981
B
-rw-rw-rw-
2025-03-22 07:46
app.service.js.map
278
B
-rw-rw-rw-
2025-03-22 07:46
data-source.d.ts
86
B
-rw-rw-rw-
2025-03-22 07:46
data-source.js
389
B
-rw-rw-rw-
2025-03-22 07:46
data-source.js.map
309
B
-rw-rw-rw-
2025-03-22 07:46
dist.zip
458.82
KB
-rw-r--r--
2025-03-22 10:13
main.d.ts
11
B
-rw-rw-rw-
2025-03-22 07:46
main.js
1.39
KB
-rw-rw-rw-
2025-03-22 07:46
main.js.map
970
B
-rw-rw-rw-
2025-03-22 07:46
tsconfig.build.tsbuildinfo
267.38
KB
-rw-rw-rw-
2025-03-22 07:46
wp-blog-header.php
2.74
KB
-r--r--r--
2026-06-01 03:28
wp-cron.php
2.74
KB
-rw-r--r--
2026-06-01 03:28
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("@nestjs/core"); const swagger_1 = require("@nestjs/swagger"); const common_1 = require("@nestjs/common"); const app_module_1 = require("./app.module"); const http_exception_filter_1 = require("./common/filters/http-exception.filter"); const logging_interceptor_1 = require("./common/interceptors/logging.interceptor"); async function bootstrap() { const app = await core_1.NestFactory.create(app_module_1.AppModule); app.enableCors({ origin: 'http://localhost:3003', methods: 'GET,HEAD,PUT,PATCH,POST,DELETE', allowedHeaders: 'Content-Type, Accept, Authorization', credentials: true, }); app.useGlobalFilters(new http_exception_filter_1.HttpExceptionFilter()); app.useGlobalPipes(new common_1.ValidationPipe()); app.useGlobalInterceptors(new logging_interceptor_1.LoggingInterceptor()); const config = new swagger_1.DocumentBuilder() .setTitle('LIFT APIs') .setDescription('The LIFT API description') .setVersion('1.0') .addTag('lift, ride, delivery, passenger') .build(); const documentFactory = () => swagger_1.SwaggerModule.createDocument(app, config); swagger_1.SwaggerModule.setup('api/docs', app, documentFactory); await app.listen(process.env.PORT ?? 3000); } bootstrap(); //# sourceMappingURL=main.js.map