kibana/tasks/config/esvm.js
Spencer 9ae53c3715 Disable marvel and refresh master on restart
Since marvel doesn't currently work with es 2.0 I'm disabling the plugin and adding `fresh: true` so that every time the esvm task is run it will refresh our master build.
2015-06-23 11:44:49 -07:00

29 lines
589 B
JavaScript

module.exports = function (grunt) {
var join = require('path').join;
var rel = require('path').join.bind(null, grunt.config.get('root'));
var directory = join(grunt.config.get('root'), 'esvm');
var dataDir = join(directory, 'data_dir');
return {
options: {
directory: directory,
branch: 'master',
fresh: true,
config: {
path: {
data: dataDir
},
network: {
host: '127.0.0.1'
},
marvel: {
agent: {
enabled: false
}
}
}
},
dev: {}
};
};