Change RO number to jobid.

This commit is contained in:
Patrick Fic
2022-05-04 18:13:21 -07:00
parent 05a8c90f03
commit 7754dc4653
10 changed files with 40 additions and 36 deletions

View File

@@ -87,7 +87,7 @@ const app: Express = express();
const port = process.env.PORT;
app.use(bodyParser.json({ limit: "50mb" }));
app.use(bodyParser.urlencoded({ limit: "50mb", extended: true }));
app.use(FolderPaths.StaticPath, express.static(FolderPaths.Root));
app.use(cors());
const morganMiddleware = morgan(
"combined", //":method :url :status :res[content-length] - :response-time ms"
@@ -121,7 +121,7 @@ app.post(
);
InitServer();
app.use(FolderPaths.StaticPath, express.static(FolderPaths.Root, {}));
app.listen(port, () => {
logger.info(`ImEX Media Server is running at http://localhost:${port}`);
});