From 94b024334167b3b37db4a15cde95dd2d0909853c Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Fri, 16 Oct 2015 11:40:47 -0700 Subject: [PATCH] Update minio micro services description --- README.md | 6 +++++- main.go | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a989a0fdc..7bda1aee3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ ## Minio [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -Minio is a minimal cloud storage server for Micro Services & Magnetic Disks. Written in Golang and licensed under [Apache license v2](./LICENSE). Compatible with Amazon S3 APIs. +Minio is a minimal cloud storage server for Micro Services. Written in Golang and licensed under [Apache license v2](./LICENSE). Compatible with Amazon S3 APIs. + +## Description + +Micro services environment provisions one Minio server per application instance. Scalability is achieved to through large number of smaller personalized instances. This version of the Minio binary is built using Filesystem storage backend for magnetic and solid state disks. ## Minio Client diff --git a/main.go b/main.go index f8902cfc1..44e2d8096 100644 --- a/main.go +++ b/main.go @@ -106,8 +106,8 @@ func registerApp() *cli.App { // hide --version flag, version is a command app.HideVersion = true app.Author = "Minio.io" - app.Usage = "Cloud Storage Server for Micro Services & Magnetic Disks." - app.Description = `Micro services environment provisions one Minio server per application instance. Scalability is achieved to through large number of smaller personalized instances. This version of the Minio binary is built using Filesystem storage backend for magnetic disk. It is ideal for storing large objects with sizes ranging from few MBs to GBs. Minio binary is small enough to be bundled along with the application stack.` + app.Usage = "Cloud Storage Server for Micro Services." + app.Description = `Micro services environment provisions one Minio server per application instance. Scalability is achieved to through large number of smaller personalized instances. This version of the Minio binary is built using Filesystem storage backend for magnetic and solid state disks.` app.Flags = flags app.Commands = commands