Merge pull request #2090 from spenceralger/esvm_dir_config

Set data and logging path config for esvm
This commit is contained in:
Rashid Khan 2014-12-03 15:16:41 -07:00
commit 9fa6c25123
2 changed files with 8 additions and 1 deletions

3
.gitignore vendored
View file

@ -8,4 +8,5 @@ build
target
.jruby
.idea
*.iml
*.iml
esvm

View file

@ -1,4 +1,6 @@
module.exports = function (grunt) {
var rel = require('path').join.bind(null, __dirname, '../../');
return {
options: {
version: '^1.4',
@ -6,6 +8,10 @@ module.exports = function (grunt) {
'elasticsearch/marvel/latest'
],
config: {
path: {
data: rel('esvm/data_dir'),
logs: rel('esvm/logs')
},
network: {
host: '127.0.0.1'
},