Files
meanTorrent/config/env/all.js

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'
};