Initial web app consumption/integration #5

Merged
joe merged 6 commits from web-app-integration into master 2026-02-23 21:15:19 +00:00
Showing only changes of commit f72047b18e - Show all commits

View file

@ -4,6 +4,7 @@ import { NestExpressApplication } from '@nestjs/platform-express';
async function bootstrap(): Promise<void> {
const app = await NestFactory.create<NestExpressApplication>(AppModule);
app.enableCors();
app.setGlobalPrefix(process.env.PREFIX ?? 'common-cents');
await app.listen(process.env.PORT ?? 3000);
}