mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
16 lines
388 B
JavaScript
16 lines
388 B
JavaScript
const path = require('path');
|
|
const pkg = require('../package.json');
|
|
const kbnEs = require('@kbn/es');
|
|
|
|
kbnEs
|
|
.run({
|
|
license: 'basic',
|
|
password: 'changeme',
|
|
version: pkg.version,
|
|
'source-path': path.resolve(__dirname, '../../elasticsearch'),
|
|
'base-path': path.resolve(__dirname, '../.es'),
|
|
})
|
|
.catch(e => {
|
|
console.error(e);
|
|
process.exitCode = 1;
|
|
});
|