initial commit

generated from the plugin template, this does nothing but provide a plugin with the expected name
This commit is contained in:
2017-12-12 10:33:10 -07:00
commit 0b923e8376
8 changed files with 3754 additions and 0 deletions

31
README.md Normal file
View File

@@ -0,0 +1,31 @@
# fake-xpack
> Enough to satisfy the license check
---
## development
See the [kibana contributing guide](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md) for instructions setting up your development environment. Once you have completed that, use the following npm tasks.
- `npm start`
Start kibana and have it include this plugin
- `npm start -- --config kibana.yml`
You can pass any argument that you would normally send to `bin/kibana` by putting them after `--` when running `npm start`
- `npm run build`
Build a distributable archive
- `npm run test:browser`
Run the browser tests in a real web browser
- `npm run test:server`
Run the server tests using mocha
For more information about any of these commands run `npm run ${task} -- --help`.