Skip to content

Commit

Permalink
Secops structure code (elastic#24652)
Browse files Browse the repository at this point in the history
* add basic structure for secops application
* finalize skeleton for secops
* fix type issue and hapi new version
* remove route home, not needed for now
* Add configuration + delete noise
* prepend elastic license to generated file
  • Loading branch information
XavierM committed Oct 29, 2018
1 parent 32f3d0f commit ade3325
Show file tree
Hide file tree
Showing 51 changed files with 3,295 additions and 144 deletions.
1 change: 1 addition & 0 deletions x-pack/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
/.env
/.kibana-plugin-helpers.dev.*
!/plugins/infra/**/target
!/plugins/secops/**/target
2 changes: 2 additions & 0 deletions x-pack/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { kueryAutocomplete } from './plugins/kuery_autocomplete';
import { canvas } from './plugins/canvas';
import { infra } from './plugins/infra';
import { rollup } from './plugins/rollup';
import { secops } from './plugins/secops';

module.exports = function (kibana) {
return [
Expand Down Expand Up @@ -55,5 +56,6 @@ module.exports = function (kibana) {
kueryAutocomplete(kibana),
infra(kibana),
rollup(kibana),
secops(kibana),
];
};
7 changes: 4 additions & 3 deletions x-pack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^6.0.6",
"@types/react-router-dom": "^4.3.1",
"@types/recompose": "^0.26.0",
"@types/reduce-reducers": "^0.1.3",
"@types/sinon": "^5.0.1",
"@types/supertest": "^2.0.5",
Expand Down Expand Up @@ -82,9 +83,9 @@
"expect.js": "0.3.1",
"fancy-log": "^1.3.2",
"fetch-mock": "^5.13.1",
"graphql-code-generator": "^0.10.1",
"graphql-codegen-introspection-template": "^0.10.5",
"graphql-codegen-typescript-template": "^0.10.1",
"graphql-code-generator": "^0.12.6",
"graphql-codegen-introspection-template": "^0.12.6",
"graphql-codegen-typescript-template": "^0.12.6",
"gulp": "3.9.1",
"gulp-mocha": "^6.0.0",
"gulp-multi-process": "^1.3.1",
Expand Down
Loading

0 comments on commit ade3325

Please sign in to comment.