From 78a03f11001132975afd74c44723bae541f80675 Mon Sep 17 00:00:00 2001 From: David Baldwynn Date: Thu, 28 Apr 2016 16:25:12 -0700 Subject: [PATCH] updated .env location --- config/config.js | 3 ++- gruntfile.js | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/config.js b/config/config.js index 6a3c1f13..0254c75a 100755 --- a/config/config.js +++ b/config/config.js @@ -16,7 +16,8 @@ var minBowerFiles = function(type){ var newPath = path.replace(/.([^.]+)$/g, '.min.$1'); return exists( newPath ) ? newPath : path; }); -} +}; + /** * Load app configurations */ diff --git a/gruntfile.js b/gruntfile.js index 1eead5e8..cdd9f7fe 100755 --- a/gruntfile.js +++ b/gruntfile.js @@ -143,7 +143,7 @@ module.exports = function(grunt) { env: { test: { NODE_ENV: 'test', - src: '/opt/deploy/.env' + src: '.env' }, secure: { NODE_ENV: 'secure', @@ -151,7 +151,7 @@ module.exports = function(grunt) { production: { NODE_ENV: 'production' }, - src: '/opt/deploy/.env' + src: '.env' }, mochaTest: { src: watchFiles.serverTests,