kibana/tasks/config/run.js
Chris Cowan 49017ee7cf Refactoring Directory Layout for Build Process
- Moving bower_componets to src/kibana
- Moving server to src/server
- Adjusting all the build scripts and tests
- Adding proxy for backend server to connect
- Adding build steps for jar and server
2014-09-08 09:59:29 -07:00

15 lines
211 B
JavaScript

module.exports = function (grunt) {
var config = {
kibana_server: {
options: {
wait: false
// quiet: true
},
cmd: 'src/server/bin/kibana'
}
};
return config;
};