mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-05-06 04:45:31 +02:00
17 lines
434 B
JavaScript
17 lines
434 B
JavaScript
'use strict';
|
|
|
|
var path = require('path'),
|
|
rootPath = path.normalize(__dirname + '/../..');
|
|
|
|
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'
|
|
},
|
|
root: rootPath,
|
|
port: process.env.PORT || 3000,
|
|
templateEngine: 'swig',
|
|
sessionSecret: 'MEAN',
|
|
sessionCollection: 'sessions'
|
|
}; |