Connect frontend to backend

This commit is contained in:
2020-06-01 15:04:15 +02:00
parent a9671b8b0a
commit 52a0e48323
9 changed files with 95 additions and 55 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(3500);
}
bootstrap();