mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 23:41:25 +02:00
- Move finance, mail, moodlit to apps-archived for later development - Rename games/voxel-lava to games/voxelava 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
1,012 B
TypeScript
40 lines
1,012 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { ValidationPipe } from '@nestjs/common';
|
|
import { AppModule } from './app.module';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AppModule);
|
|
|
|
// Enable CORS for mobile and web apps
|
|
const corsOrigins = process.env.CORS_ORIGINS?.split(',').map((origin) => origin.trim()) || [
|
|
'http://localhost:3000',
|
|
'http://localhost:5173',
|
|
'http://localhost:5186',
|
|
'http://localhost:8081',
|
|
'exp://localhost:8081',
|
|
'http://localhost:3001',
|
|
];
|
|
|
|
app.enableCors({
|
|
origin: corsOrigins,
|
|
methods: ['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'OPTIONS'],
|
|
credentials: true,
|
|
});
|
|
|
|
// Enable validation
|
|
app.useGlobalPipes(
|
|
new ValidationPipe({
|
|
whitelist: true,
|
|
transform: true,
|
|
forbidNonWhitelisted: true,
|
|
})
|
|
);
|
|
|
|
// Set global prefix for API routes
|
|
app.setGlobalPrefix('api/v1');
|
|
|
|
const port = process.env.PORT || 3017;
|
|
await app.listen(port);
|
|
console.log(`Mail backend running on http://localhost:${port}`);
|
|
}
|
|
bootstrap();
|