minio/vendor/github.com
Harshavardhana aaf97ea02c config/main: Re-write config files - add to new config v3
- New config format.

```
{
	"version": "3",
	"address": ":9000",
    "backend": {
          "type": "fs",
          "disk": "/path"
    },
	"credential": {
		"accessKey": "WLGDGYAQYIGI833EV05A",
		"secretKey": "BYvgJM101sHngl2uzjXS/OBF/aMxAN06JrJ3qJlF"
	},
	"region": "us-east-1",
	"logger": {
		"file": {
			"enable": false,
			"fileName": "",
			"level": "error"
		},
		"syslog": {
			"enable": false,
			"address": "",
			"level": "debug"
		},
		"console": {
			"enable": true,
			"level": "fatal"
		}
	}
}
```

New command lines in lieu of supporting XL.

Minio initialize filesystem backend.
~~~
$ minio init fs <path>
~~~

Minio initialize XL backend.
~~~
$ minio init xl <url1>...<url16>
~~~

For 'fs' backend it starts the server.
~~~
$ minio server
~~~

For 'xl' backend it waits for servers to join.
~~~
$ minio server
... [PROGRESS BAR] of servers connecting
~~~

Now on other servers execute 'join' and they connect.
~~~
....
minio join <url1> -- from <url2> && minio server
minio join <url1> -- from <url3> && minio server
...
...
minio join <url1> -- from <url16> && minio server
~~~
2016-03-23 19:16:09 -07:00
..
dgrijalva/jwt-go jwt: Add JWT support for minio server. 2016-01-22 17:38:05 -08:00
dustin/go-humanize Migrate this project to minio micro services code 2015-10-16 11:26:08 -07:00
elazarl/go-bindata-assetfs ui-assets: Integrate UI assets. 2016-02-04 18:07:05 -08:00
facebookgo Migrate this project to minio micro services code 2015-10-16 11:26:08 -07:00
fatih vendor: Update to new upstream changes from fatih/color 2016-02-23 15:01:17 -08:00
gorilla browser-assets: serve asset files with compression. 2016-03-04 07:47:26 +05:30
hashicorp/go-version rewrite minio runtime checks 2016-02-15 17:56:56 +05:30
klauspost/cpuid cpu: Remove pkg/cpu in favor of better klauspost/cpuid. 2016-02-15 13:50:33 -08:00
mattn vendor: Update to new upstream changes from fatih/color 2016-02-23 15:01:17 -08:00
minio config/main: Re-write config files - add to new config v3 2016-03-23 19:16:09 -07:00
olekukonko/ts Migrate this project to minio micro services code 2015-10-16 11:26:08 -07:00
rs/cors Migrate this project to minio micro services code 2015-10-16 11:26:08 -07:00
Sirupsen/logrus Migrate this project to minio micro services code 2015-10-16 11:26:08 -07:00