jiraCloud/app.js
jmcqueen 0b056739e9 Add modular Jira-to-Webex approvals service with Docker deployment.
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>
2026-07-17 08:34:47 -04:00

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;
}