From 7ed41a1f60497b2a4b7502862b7fd07c70816977 Mon Sep 17 00:00:00 2001 From: ahwayakchih Date: Thu, 26 Feb 2015 17:39:23 +0100 Subject: [PATCH] Set separator for loading environment variables to `nconf`, as discussed on https://github.com/NodeBB/NodeBB/pull/2778#issuecomment-76209393 --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index ef113e5ece..1299cfdf4a 100644 --- a/app.js +++ b/app.js @@ -21,7 +21,7 @@ /*global require, global, process*/ var nconf = require('nconf'); -nconf.argv().env(); +nconf.argv().env('__'); var fs = require('fs'), os = require('os'),