25 lines
801 B
TypeScript
25 lines
801 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { ValidationPipe } from '@nestjs/common';
|
|
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
|
|
import { AppModule } from './app.module';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AppModule);
|
|
app.enableCors();
|
|
app.useGlobalPipes(new ValidationPipe({ whitelist: true, transform: true }));
|
|
|
|
const config = new DocumentBuilder()
|
|
.setTitle('Genex Testnet Faucet')
|
|
.setDescription('Distribute test GNX (100) + test USDC (10,000) per 24h')
|
|
.setVersion('1.0')
|
|
.build();
|
|
|
|
SwaggerModule.setup('docs', app, SwaggerModule.createDocument(app, config));
|
|
|
|
const port = process.env.PORT || 3023;
|
|
await app.listen(port);
|
|
console.log(`Faucet running on :${port} | Swagger: /docs`);
|
|
}
|
|
|
|
bootstrap();
|