Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
pierregee committed Nov 8, 2023
1 parent 9d56e3c commit d0d75e6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/server/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
const PORT = process.env.PORT || 3001;
app.listen(PORT).then(() => console.log(`Started server on port ${PORT}`));
// eslint-disable-next-line @typescript-eslint/no-floating-promises
app.listen(PORT).then(() => {
// eslint-disable-next-line no-console
console.log(`Started server on port ${PORT}`)
});
}
void bootstrap();

0 comments on commit d0d75e6

Please sign in to comment.