oneuptime/HelmChart/index.ts
Simon Larsen 683976f0c7
fix lint.
2022-06-03 15:03:56 +01:00

19 lines
521 B
TypeScript

import { ExpressStatic, ExpressApplication } from 'CommonServer/Utils/Express';
import App from 'CommonServer/Utils/StartServer';
import path from 'path';
export const APP_NAME: string = 'chart';
const app: ExpressApplication = App(APP_NAME);
// Set the view engine to ejs
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
//Serve files in public directory
app.use(
[`/${APP_NAME}`, '/'],
ExpressStatic(path.join(__dirname, 'public'), { maxAge: 2592000 })
);
export default app;