mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 23:30:10 +00:00
17 lines
409 B
TypeScript
17 lines
409 B
TypeScript
import { ExpressStatic } from 'Common-server/Utils/Express';
|
|
import app from 'Common-server/utils/StartServer';
|
|
|
|
import path from 'path';
|
|
|
|
// 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(
|
|
['/chart', '/'],
|
|
ExpressStatic(path.join(__dirname, 'public'), { maxAge: 2592000 })
|
|
);
|
|
|
|
export default app;
|