Rename NODE_ENV=production to NODE_ENV=prod

This commit is contained in:
Ryan Kelly 2013-12-17 15:36:34 +11:00
Родитель e81a60cd32
Коммит 97a7ca0b21
5 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -9,7 +9,7 @@ var config = require('../config').root()
function main() {
var log = require('../log')(config.log.level)
if (config.env !== 'production') {
if (config.env !== 'prod') {
log.info(config, "starting config")
}

Просмотреть файл

@ -9,7 +9,7 @@ module.exports = function (fs, path, url, convict) {
env: {
doc: "The current node.js environment",
default: "dev",
format: [ "dev", "test", "stage", "production" ],
format: [ "dev", "test", "stage", "prod" ],
env: 'NODE_ENV'
},
log: {

Просмотреть файл

@ -129,7 +129,7 @@ module.exports = function (config, log, now) {
if (config.redis && config.redis.host) {
return RedisNonceDB
} else {
if (config.env === 'production') {
if (config.env === 'prod') {
log.warn('using in-memory nonce db; this is likely not suitable for production')
}
return MemoryNonceDB

Просмотреть файл

@ -20,7 +20,7 @@ module.exports = function (
Token,
config
) {
var isProduction = config.env === 'production'
var isProduction = config.env === 'prod'
var auth = require('./auth')(log, isA, error, db, Token)
var defaults = require('./defaults')(log, P, db)
var idp = require('./idp')(log, serverPublicKey)

Просмотреть файл

@ -211,7 +211,7 @@ module.exports = function (path, url, Hapi, toobusy) {
}
response = error.wrap(details)
}
if (config.env !== 'production') {
if (config.env !== 'prod') {
response.response.payload.log = request.app.traced
}
if (response.response.payload.domainThrown) {