mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-07 06:59:29 +01:00
24 lines
887 B
JavaScript
24 lines
887 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
app: {
|
|
title: 'MEAN.JS',
|
|
description: 'Full-Stack JavaScript with MongoDB, Express, AngularJS, and Node.js',
|
|
keywords: 'mongodb, express, angularjs, node.js, mongoose, passport',
|
|
googleAnalyticsTrackingID: process.env.GOOGLE_ANALYTICS_TRACKING_ID || 'GOOGLE_ANALYTICS_TRACKING_ID'
|
|
},
|
|
port: process.env.PORT || 3000,
|
|
templateEngine: 'swig',
|
|
// Session details
|
|
// session expiration is set by default to 24 hours
|
|
sessionExpiration: 24 * (60 * 60 * 1000),
|
|
// sessionSecret should be changed for security measures and concerns
|
|
sessionSecret: 'MEAN',
|
|
// sessionKey is set to the generic sessionId key used by PHP applications
|
|
// for obsecurity reasons
|
|
sessionKey: 'sessionId',
|
|
sessionCollection: 'sessions',
|
|
logo: 'modules/core/client/img/brand/logo.png',
|
|
favicon: 'modules/core/client/img/brand/favicon.ico'
|
|
};
|