chore: migrate backend to monorepo apps and biome

This commit is contained in:
2026-04-03 18:04:59 +03:00
parent 33ca299632
commit 6032451b17
52 changed files with 956 additions and 1198 deletions

8
apps/tasks/src/main.ts Normal file
View File

@@ -0,0 +1,8 @@
import { NestFactory } from '@nestjs/core';
import { TasksModule } from './tasks.module';
async function bootstrap() {
const app = await NestFactory.create(TasksModule);
await app.listen(process.env.TASKS_PORT ?? 3002);
}
bootstrap();