Guest User

Untitled

a guest
Dec 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. app.configure( function() {
  2.  
  3. app.engine('html', consolidate.mustache);
  4. app.set('view engine', 'html');
  5. app.set('views', path.join(__dirname, 'views'));
  6.  
  7. chat.configure( app );
  8.  
  9. app.use('/', express.static(path.join(__dirname, 'static'), { maxAge: 86400000 }));
  10. app.use(express.cookieParser());
  11. app.use(express.bodyParser());
  12. app.use(express.methodOverride());
  13. app.use(express.session({secret:'lol'}));
  14.  
  15. } );
Add Comment
Please, Sign In to add comment