update the readme, remove java requirement

This commit is contained in:
Joe Fleming 2015-01-21 14:26:38 -07:00
parent 6eacb05fdf
commit 4e74d435b8
3 changed files with 12 additions and 2 deletions

View file

@ -18,9 +18,8 @@ Kibana is an open source (Apache Licensed), browser based analytics and search d
## Requirements
- Java
- Elasticsearch version 1.4.0 or later
- ...and nothing else
- Kibana binary package
*Note:* Groovy scripting must be enabled in Elasticsearch

View file

@ -30,6 +30,7 @@ if (app.get('env') === 'development') {
// TODO: WE might want to move the middleware to each of the individual routes
// so we don't have weird conflicts in the future.
app.use('/elasticsearch', proxy);
app.use('/enforcer', require('./lib/enforce'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
@ -40,6 +41,7 @@ if (config.external_plugins_folder) app.use('/plugins', express.static(config.ex
app.use('/', routes);
// catch 404 and forward to error handler
app.use(function (req, res, next) {
var err = new Error('Not Found');

File diff suppressed because one or more lines are too long