mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-30 02:59:17 +01:00
Adds the log options, and format to the Morgan middleware in the Express configuration. These options are defined in the environment configurations. The implementation derived from https://github.com/meanjs/mean/pull/254 by @lirantal, which somehow got overlooked when merging 0.4.0 into master. Added tests for the Logger configuration. Added the log settings to the Test env config. Added environment variables for the log settings in the Test & Production env configs. Moved the Morgan Express middleware outside of the NODE_ENV === 'development' check. Morgan should be used in all environments, and use the settings set in each env config. Changed the wording of the Stream option comments in the env configs. Added Rotating Logs functionality, and refactored the log Stream options. Added a new npm package, FileStreamRotator, for use with Morgan's rotating logs functionality. Also, refactored the log configuration tests to be more maintainable. Added more tests, and refactored test suite to use mock-fs.
104 lines
3.4 KiB
JavaScript
104 lines
3.4 KiB
JavaScript
'use strict';
|
|
|
|
var defaultEnvConfig = require('./default');
|
|
|
|
module.exports = {
|
|
db: {
|
|
uri: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI || 'mongodb://' + (process.env.DB_1_PORT_27017_TCP_ADDR || 'localhost') + '/mean-dev',
|
|
options: {
|
|
user: '',
|
|
pass: ''
|
|
},
|
|
// Enable mongoose debug mode
|
|
debug: process.env.MONGODB_DEBUG || false
|
|
},
|
|
log: {
|
|
// logging with Morgan - https://github.com/expressjs/morgan
|
|
// Can specify one of 'combined', 'common', 'dev', 'short', 'tiny'
|
|
format: 'dev',
|
|
options: {
|
|
// Stream defaults to process.stdout
|
|
// Uncomment/comment to toggle the logging to a log on the file system
|
|
stream: {
|
|
directoryPath: process.cwd(),
|
|
fileName: 'access.log',
|
|
rotatingLogs: { // for more info on rotating logs - https://github.com/holidayextras/file-stream-rotator#usage
|
|
active: false, // activate to use rotating logs
|
|
fileName: 'access-%DATE%.log', // if rotating logs are active, this fileName setting will be used
|
|
frequency: 'daily',
|
|
verbose: false
|
|
}
|
|
}
|
|
}
|
|
},
|
|
app: {
|
|
title: defaultEnvConfig.app.title + ' - Development Environment'
|
|
},
|
|
facebook: {
|
|
clientID: process.env.FACEBOOK_ID || 'APP_ID',
|
|
clientSecret: process.env.FACEBOOK_SECRET || 'APP_SECRET',
|
|
callbackURL: '/api/auth/facebook/callback'
|
|
},
|
|
twitter: {
|
|
clientID: process.env.TWITTER_KEY || 'CONSUMER_KEY',
|
|
clientSecret: process.env.TWITTER_SECRET || 'CONSUMER_SECRET',
|
|
callbackURL: '/api/auth/twitter/callback'
|
|
},
|
|
google: {
|
|
clientID: process.env.GOOGLE_ID || 'APP_ID',
|
|
clientSecret: process.env.GOOGLE_SECRET || 'APP_SECRET',
|
|
callbackURL: '/api/auth/google/callback'
|
|
},
|
|
linkedin: {
|
|
clientID: process.env.LINKEDIN_ID || 'APP_ID',
|
|
clientSecret: process.env.LINKEDIN_SECRET || 'APP_SECRET',
|
|
callbackURL: '/api/auth/linkedin/callback'
|
|
},
|
|
github: {
|
|
clientID: process.env.GITHUB_ID || 'APP_ID',
|
|
clientSecret: process.env.GITHUB_SECRET || 'APP_SECRET',
|
|
callbackURL: '/api/auth/github/callback'
|
|
},
|
|
paypal: {
|
|
clientID: process.env.PAYPAL_ID || 'CLIENT_ID',
|
|
clientSecret: process.env.PAYPAL_SECRET || 'CLIENT_SECRET',
|
|
callbackURL: '/api/auth/paypal/callback',
|
|
sandbox: true
|
|
},
|
|
mailer: {
|
|
from: process.env.MAILER_FROM || 'MAILER_FROM',
|
|
options: {
|
|
service: process.env.MAILER_SERVICE_PROVIDER || 'MAILER_SERVICE_PROVIDER',
|
|
auth: {
|
|
user: process.env.MAILER_EMAIL_ID || 'MAILER_EMAIL_ID',
|
|
pass: process.env.MAILER_PASSWORD || 'MAILER_PASSWORD'
|
|
}
|
|
}
|
|
},
|
|
livereload: true,
|
|
seedDB: {
|
|
seed: process.env.MONGO_SEED === 'true' ? true : false,
|
|
options: {
|
|
logResults: process.env.MONGO_SEED_LOG_RESULTS === 'false' ? false : true,
|
|
seedUser: {
|
|
username: process.env.MONGO_SEED_USER_USERNAME || 'user',
|
|
provider: 'local',
|
|
email: process.env.MONGO_SEED_USER_EMAIL || 'user@localhost.com',
|
|
firstName: 'User',
|
|
lastName: 'Local',
|
|
displayName: 'User Local',
|
|
roles: ['user']
|
|
},
|
|
seedAdmin: {
|
|
username: process.env.MONGO_SEED_ADMIN_USERNAME || 'admin',
|
|
provider: 'local',
|
|
email: process.env.MONGO_SEED_ADMIN_EMAIL || 'admin@localhost.com',
|
|
firstName: 'Admin',
|
|
lastName: 'Local',
|
|
displayName: 'Admin Local',
|
|
roles: ['user', 'admin']
|
|
}
|
|
}
|
|
}
|
|
};
|