mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-21 06:42:28 +01:00
15 lines
444 B
JavaScript
15 lines
444 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',
|
|
sessionSecret: 'MEAN',
|
|
sessionCollection: 'sessions'
|
|
};
|