updated .env location

This commit is contained in:
David Baldwynn 2016-04-28 16:25:12 -07:00
parent e269fd8756
commit 78a03f1100
2 changed files with 4 additions and 3 deletions

View file

@ -16,7 +16,8 @@ var minBowerFiles = function(type){
var newPath = path.replace(/.([^.]+)$/g, '.min.$1');
return exists( newPath ) ? newPath : path;
});
}
};
/**
* Load app configurations
*/

View file

@ -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,