Login Endpoint

This commit is contained in:
2022-09-05 12:31:03 +02:00
parent 083b7177d3
commit 5b9cbd62fd
12 changed files with 154 additions and 11 deletions

View File

@@ -3,6 +3,6 @@ import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
await app.listen(process.env.APP_PORT || '3000');
}
bootstrap();