mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Adding a README to the dist along with the LICENSE.
This commit is contained in:
parent
4884527bd5
commit
45eed28fff
5 changed files with 32 additions and 6 deletions
7
LICENSE.md
Normal file
7
LICENSE.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
Copyright 2012-2014 Elasticsearch BV
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
19
src/server/DIST_README.md
Normal file
19
src/server/DIST_README.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Kibana @@version
|
||||
|
||||
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elasticsearch.
|
||||
|
||||
## Installation
|
||||
|
||||
* Download: http://www.elasticsearch.org/overview/kibana/installation/
|
||||
* Run **bin/kibana** on unix, or **bin/kibana.bat** on Windows.
|
||||
* Visit http://localhost:5601
|
||||
|
||||
## Need Help?
|
||||
|
||||
Need help? Try #elasticsearch or #logstash on Freenode IRC. You can also find help on the elasticsearch-users@googlegroups.com or logstash-users@googlegroups.com mailing lists.
|
||||
|
||||
You can also find documentation at http://www.elasticsearch.com/guide/en/kibana/current
|
||||
|
||||
## Contributing
|
||||
|
||||
If you have a bugfix or new feature that you would like to contribute to Kibana, please find or open an issue about it first. Kibana is an open source project that is available on Github: https://github.com/elasticsearch/kibana
|
|
@ -10,10 +10,6 @@ module.exports = function (grunt) {
|
|||
|
||||
server_src: {
|
||||
files: [
|
||||
{
|
||||
src: '<%= src %>/server/INSTALL',
|
||||
dest: '<%= build %>/kibana/INSTALL'
|
||||
},
|
||||
{
|
||||
src: '<%= src %>/server/Gemfile',
|
||||
dest: '<%= build %>/kibana/Gemfile'
|
||||
|
@ -51,8 +47,8 @@ module.exports = function (grunt) {
|
|||
options: { mode: true },
|
||||
files: [
|
||||
{
|
||||
src: '<%= build %>/kibana/INSTALL',
|
||||
dest: '<%= build %>/dist/INSTALL',
|
||||
src: '<%= root %>/LICENSE.md',
|
||||
dest: '<%= build %>/dist/LICENSE.md'
|
||||
},
|
||||
{
|
||||
expand: true,
|
||||
|
|
|
@ -11,6 +11,10 @@ module.exports = function (grunt) {
|
|||
]
|
||||
},
|
||||
files: [
|
||||
{
|
||||
src: [join(src, 'server', 'DIST_README.md')],
|
||||
dest: join(build, 'dist', 'README.md')
|
||||
},
|
||||
{
|
||||
src: [join(src, 'server', 'bin', 'kibana.sh')],
|
||||
dest: join(build, 'dist', 'bin', 'kibana')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue