mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 08:54:54 +00:00
Docerizing and proxying the microservices
This commit is contained in:
@ -5,4 +5,5 @@ async function bootstrap() {
|
||||
const app = await NestFactory.create(AuthModule);
|
||||
await app.listen(7001);
|
||||
}
|
||||
console.log('Starting auth at port 7001...');
|
||||
bootstrap();
|
||||
|
||||
@ -5,4 +5,6 @@ async function bootstrap() {
|
||||
const app = await NestFactory.create(AppModule);
|
||||
await app.listen(7000);
|
||||
}
|
||||
|
||||
console.log('Starting backend at port 7000...');
|
||||
bootstrap();
|
||||
|
||||
Reference in New Issue
Block a user