This commit is contained in:
NAME
2026-05-13 07:42:28 +00:00
parent 632b3cb23b
commit 41ed6d29db
+9 -1
View File
@@ -3,6 +3,14 @@ import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(process.env.PORT ?? 3004);
const port = process.env.PORT || 3005;
await app.listen(port, () =>
console.log(`
🔥 X-Poster is running!
📡 API: http://localhost:${port}
`)
);
}
bootstrap();