Stabilize logging, correlation IDs, service-account Jira auth, and direct approver reminder DMs while splitting the monolith into focused modules with Compose-based deployment. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
import express from 'express';
|
|
import bodyParser from 'body-parser';
|
|
|
|
export function createApp() {
|
|
const app = express();
|
|
app.use(bodyParser.json({ limit: '200mb' }));
|
|
return app;
|
|
}
|