started removing kibana stuff I do not need, thinking of doing a custom dashboard based on kibana

This commit is contained in:
Torkel Ödegaard
2013-12-05 16:45:52 +01:00
parent d1c54c1c78
commit 50e42c8bdd
107 changed files with 108 additions and 15966 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
// Lint and build CSS
module.exports = function(grunt) {
grunt.registerTask('default', ['jshint:source', 'less:src', 'docs']);
grunt.registerTask('default', ['jshint:source', 'less:src']);
};
-4
View File
@@ -1,4 +0,0 @@
// Lint and build CSS
module.exports = function(grunt) {
grunt.registerTask('docs', ['clean:docs', 'scratchy:docs']);
};
-34
View File
@@ -1,34 +0,0 @@
module.exports = function(config) {
return {
dist: {
bucket: 'download.elasticsearch.org',
access: 'private',
// debug: true, // uncommment to prevent actual upload
upload: [
{
src: '<%= tempDir %>/<%= pkg.name %>-latest.zip',
dest: 'kibana/kibana/<%= pkg.name %>-latest.zip',
},
{
src: '<%= tempDir %>/<%= pkg.name %>-latest.tar.gz',
dest: 'kibana/kibana/<%= pkg.name %>-latest.tar.gz',
}
]
},
release: {
bucket: 'download.elasticsearch.org',
access: 'private',
// debug: true, // uncommment to prevent actual upload
upload: [
{
src: '<%= tempDir %>/<%= pkg.name %>-<%= pkg.version %>.zip',
dest: 'kibana/kibana/<%= pkg.name %>-<%= pkg.version %>.zip',
},
{
src: '<%= tempDir %>/<%= pkg.name %>-<%= pkg.version %>.tar.gz',
dest: 'kibana/kibana/<%= pkg.name %>-<%= pkg.version %>.tar.gz',
}
]
}
};
};
-13
View File
@@ -1,13 +0,0 @@
module.exports = function(config) {
return {
docs: {
src: ['src/app/**/*.js','src/config.js'],
dest: config.docsDir+"/kibana",
options: {
unslash: true,
extension: '.asciidoc',
annotate: '// '
}
}
}
};