mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 21:59:39 +02:00
- Add build script to compile TypeScript to dist/ - Update exports to point to compiled files - Update calendar-web Dockerfile to build shared-vite-config Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
306 B
TypeScript
10 lines
306 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from './app.module';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AppModule);
|
|
const port = process.env.PORT || 3323;
|
|
await app.listen(port);
|
|
console.log(`Matrix Storage Bot running on port ${port}`);
|
|
}
|
|
bootstrap();
|