Local modifications to ClusterLabs/Anvil by Alteeve
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
778 B

import cors from 'cors';
import express, { json } from 'express';
import { guardApi, passport, session } from './middlewares';
import routes from './routes';
import { rrouters } from './lib/rrouters';
export default (async () => {
const app = express();
app.use(json());
app.use(
cors({
origin: true,
credentials: true,
}),
);
// Add session handler to the chain **after** adding other handlers that do
// not depend on session(s).
app.use(await session);
app.use(passport.initialize());
app.use(passport.authenticate('session'));
rrouters(app, routes.private, {
assign: (router) => [guardApi, router],
route: '/api',
});
rrouters(app, routes.public, { route: '/api' });
app.use(routes.static);
return app;
})();